Created
July 15, 2015 13:45
-
-
Save Irfan-Ansari/00f7b8d12ddfddc16f4d to your computer and use it in GitHub Desktop.
Delete posts from selected category within the date range.
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
delete a, b, c | |
FROM wp_posts a | |
LEFT JOIN wp_term_relationships b ON ( a.ID = b.object_id ) | |
LEFT JOIN wp_postmeta c ON ( a.ID = c.post_id ) | |
LEFT JOIN wp_term_taxonomy d ON ( d.term_taxonomy_id = b.term_taxonomy_id ) | |
LEFT JOIN wp_terms e ON ( e.term_id = d.term_id ) | |
WHERE e.term_id IN (10) | |
AND a.post_type = 'post' | |
AND a.post_date BETWEEN '2008-01-01' AND '2013-01-15'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment