Created
July 1, 2013 14:42
-
-
Save atopal/5901428 to your computer and use it in GitHub Desktop.
Number of new questions per day
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 DATE(`questions_question`.`created`), count(*) | |
| FROM `questions_question` | |
| WHERE DATE(`questions_question`.`created`) > '2012-12-01' | |
| GROUP BY DATE(`questions_question`.`created`) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment