Created
April 4, 2020 20:31
-
-
Save ashutoshpw/1f8339c41eba0322f0bfd481c78dee26 to your computer and use it in GitHub Desktop.
mysql_queries_for_analytics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Select Count for each Day | |
SELECT DATE(created_at) Date, COUNT(DISTINCT id) totalCOunt | |
FROM table_name | |
GROUP BY DATE(created_at) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment