Skip to content

Instantly share code, notes, and snippets.

@felipelavinz
Last active August 29, 2015 14:05
Show Gist options
  • Save felipelavinz/f60f601bbc514f95b09a to your computer and use it in GitHub Desktop.
Save felipelavinz/f60f601bbc514f95b09a to your computer and use it in GitHub Desktop.
entradas publicadas por mes
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