Last active
October 23, 2019 11:13
-
-
Save mattkomarnicki/90d964ffd570022597549a402fefabb9 to your computer and use it in GitHub Desktop.
This file contains 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 YEAR(FROM_UNIXTIME(post_time)) as `year`, LPAD(MONTH(FROM_UNIXTIME(post_time)), 2, 0) as `month`, COUNT(post_id) as count FROM phpbb3_posts | |
GROUP BY `year`, `month` | |
ORDER BY `year`, `month` ASC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment