Friday, April 12, 2013

Deleting duplicate and repetitive posts from wordpress using Mysql

Repetitive post are the post which have same post title

DELETE bad_rows.*
from wp_posts as bad_rows
inner join (
select post_title, MIN(id) as min_id
from wp_posts
group by post_title
having count(*) > 1
) as good_rows on good_rows.post_title = bad_rows.post_title
and good_rows.min_id <> bad_rows.id;

No comments:

Post a Comment