my
sql中select distinct * from text不能显示不重复的记录,而是直接全部显示
代码如下:
create table bak as (select * from test group by title having count(*)=1);
insert into bak (select * from test group by title having count(*)>1);
truncate table test;
insert into test select * from bak;








