Oracle 重复数据查询以及删除

Create table test
(id number(2),
names varchar2(20));
insert into test values(1,'张三');
insert into test values(2,'李四');
insert into test values(3,'马七');
select * from test;
--查找重复数据
select * from test a where (a.id,a.names) in
(select id,names from test group by id,names having count(*) > 1)

--删除重复数据,只留rowid最小的那行;
delete from test a where (a.id,a.names) in
(select id,names having count(*) > 1)
and rowid not in (select min(rowid) from test group by id,names having count(*)>1)
--查找重复数据,不含rowid最小的行
select * from test a where (a.id,a.names) in
(select id,names having count(*) > 1)
and rowid not in (select min(rowid) from test group by id,names having count(*)>1)


---1.以上是重复数据根据多列来判断


以下是重复数据根据单列来判断

1、首先,查找表中多余的重复记录,重复记录是根据单个字段(id)来判断

select * from test where id in(select id from test group by having count(id) >1)

2、删除表中多余的重复记录,重复记录是根据单个字段(id)来判断,只留有rowid最小的记录

delete from test where (id) in (select id from test group by id having count(id) >1) and rowid not in (select min(rowid) from test group by id having count(*)>1)

相关文章

Java Oracle 结果集是Java语言中处理数据库查询结果的一种方...
Java AES和Oracle AES是现代加密技术中最常使用的两种AES加密...
Java是一种广泛应用的编程语言,具备可靠性、安全性、跨平台...
随着移动互联网的发展,抽奖活动成为了营销活动中不可或缺的...
Java和Oracle都是在计算机领域应用非常广泛的技术,他们经常...
Java 是一门非常流行的编程语言,它可以运行于各种操作系统上...