WORDPRESS MYSQL删除重复标题文章

来源:互联网 发布:淘宝二手网店 编辑:程序博客网 时间:2024/06/05 07:54

老外博客找来的,很实用,速度很快,执行SQL语句秒删除重复标题文章:


DELETE a.* FROM wp_posts AS a INNER JOIN ( SELECT post_title, MIN( id ) AS min_id FROM wp_posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY post_title HAVING COUNT( * ) > 1 ) AS b ON b.post_title = a.post_title AND b.min_id <> a.id AND a.post_type = 'post' AND a.post_status = 'publish' 


1 0