Skip to content

Instantly share code, notes, and snippets.

@ManiruzzamanAkash
Created October 15, 2019 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ManiruzzamanAkash/e6bbc380b598c5fc44fb432cab7f0062 to your computer and use it in GitHub Desktop.
Save ManiruzzamanAkash/e6bbc380b598c5fc44fb432cab7f0062 to your computer and use it in GitHub Desktop.
All complex Database queries
# Sales values of top 7 days
SELECT COUNT(id), created_at from transaction_sell_lines
WHERE product_id = 12601
GROUP BY LEFT(created_at, 10)
ORDER BY count(id) DESC
LIMIT 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment