删除wordpress中标题重复的文章
2010年12月28日
没有评论
建了一个网站,www.wangdianzhu.info,文章主要是采集来的,有一些文章被重复采集了,需要删除标题重复的记录
ok,记录一下
create table my_tmp as select min(ID) as col1 from wp_posts group by post_title;
delete from wp_posts where ID not in (select col1 from my_tmp);
drop table my_tmp;
create table my_tmp as select min(ID) as col1 from wp_posts group by post_title;delete from wp_posts where ID not in (select col1 from my_tmp); drop table my_tmp;