create table bak as (select * from pre_forum_thread group by subject having count(*)=1);
insert into bak (select * from pre_forum_thread group by subject having count(*)>1);
truncate table pre_forum_thread;
insert into pre_forum_thread select * from bak;