查询及删除重复记录的SQL语句
1、查找表(tab)中多余的重复记录,重复记录是根据某个字段(col)来判断
select * from tab where col in (select Id from tab group by col having count(col) > 1)
2、删除表中多余的重复记录,重复记录是根据单个字段(col)来判断,只留有rowid最小的记录
DELETE from tab WHERE (col) IN ( SELECT col FROM tab GROUP BY col HAVING COUNT(col) > 1) AND ROWID NOT IN (SELECT MIN(ROWID) FROM tab GROUP BY col HAVING COUNT(*) > 1);
3、查找表中多余的重复记录(多个字段)
select * from tab a where (a.Id,a.seq) in(select Id,seq from tab group by Id,seq having count(*) > 1)
4、删除表中多余的重复记录(多个字段),只留有rowid最小的记录
delete from tab a where (a.Id,a.seq) in (select Id,seq from 表 group by Id,seq having count(*) > 1) and rowid not in (select min(rowid) from tab group by Id,seq having count(*)>1)
5、查找表中多余的重复记录(多个字段),不包含rowid最小的记录
select * from tab a where (a.Id,a.seq) in (select Id,seq from tab group by Id,seq having count(*) > 1) and rowid not in (select min(rowid) from tab group by Id,seq having count(*)>1)
如果不放心可以先把查询出来的数据放到临时表里面执行一下,然后再按照上面步骤删除。
create table tablename1 as sql语句
本文参考https://www.cnblogs.com/252e/archive/2012/09/13/2682817.html