0
Posted on 1:26 AM by Softminer and filed under ,

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;
0
Responses to ... Deleting duplicate and repetitive posts from wordpress using Mysql