Last active
August 29, 2015 14:05
-
-
Save felipelavinz/f60f601bbc514f95b09a to your computer and use it in GitHub Desktop.
entradas publicadas por mes
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 | |
YEAR( post_date ) AS year, | |
MONTH( post_date ) AS month, | |
COUNT( ID ) as posts | |
FROM | |
wpudd_posts | |
WHERE | |
post_status = 'publish' | |
GROUP BY | |
year, month |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment