如表名table1有字段A,B,C。字段A=1;字段B=2;字段C=3;这样的记录有相同两条,怎么去重,表里没有其他字段
查询出来
create table BBB
select distinct A,B,C from table1;
存入另一个表BBB;
清表table1;
truncate table table1;
在插入表table1
insert into table1
select * from BBB;
在插入回来~
这个目前没好的方案,直接删除数据,重新抽取一次