请问删除一个表中所有重复记录的SQL语句该怎么写?

时间:2021-10-06 15:12:12
请问删除一个表中所有完全相同或重复记录的SQL语句该怎么写?

11 个解决方案

#1


http://www.oradb.net/sql/find0.htm

#2


delete from table where rowid not in (select min(rowid) from table group by 字段名)

#3


用no in效率可能会慢些,看看这个:
delete from tablename a where a.rowid!=(select max(rowid) from tablename b);

#4


delete from test a where a.rowid=(select max(rowid) from test  b)

#5


delete from test a where a.rowid>=(select min(rowid) from test  b)

#6


如何查找、删除表中重复的记录 


问题提出: 
1、当我们想要为一个表创建唯一索引时,如果该表有重复的记录,则无法创建成功。 
方法原理: 
1、Oracle中,每一条记录都有一个rowid,rowid在整个数据库中是唯一的,
  rowid确定了每条记录是在ORACLE中的哪一个数据文件、块、行上。

2、在重复的记录中,可能所有列的内容都相同,但rowid不会相同,所以只要确定出重复记录中
  那些具有最大rowid的就可以了,其余全部删除。

3、以下语句用到了3项技巧:rowid、子查询、别名。

实现方法: 
SQL> create table a (
  2  bm char(4), --编码
  3  mc varchar2(20) --名称
  4  )
  5  /

表已建立.

SQL> insert into a values('1111','1111');
SQL> insert into a values('1112','1111');
SQL> insert into a values('1113','1111');
SQL> insert into a values('1114','1111');

SQL> insert into a select * from a;

插入4个记录.

SQL> commit;

完全提交.

SQL> select rowid,bm,mc from a;

ROWID              BM   MC
------------------ ---- -------
000000D5.0000.0002 1111 1111
000000D5.0001.0002 1112 1111
000000D5.0002.0002 1113 1111
000000D5.0003.0002 1114 1111
000000D5.0004.0002 1111 1111
000000D5.0005.0002 1112 1111
000000D5.0006.0002 1113 1111
000000D5.0007.0002 1114 1111

查询到8记录.


查出重复记录
SQL> select rowid,bm,mc from a where a.rowid!=(select max(rowid) from a b where a.bm=b.bm and a.mc=b.mc);

ROWID              BM   MC
------------------ ---- --------------------
000000D5.0000.0002 1111 1111
000000D5.0001.0002 1112 1111
000000D5.0002.0002 1113 1111
000000D5.0003.0002 1114 1111

删除重复记录
SQL> delete from a a where a.rowid!=(select max(rowid) from a b where a.bm=b.bm and a.mc=b.mc);

删除4个记录.

SQL> select rowid,bm,mc from a;

ROWID              BM   MC
------------------ ---- --------------------
000000D5.0004.0002 1111 1111
000000D5.0005.0002 1112 1111
000000D5.0006.0002 1113 1111
000000D5.0007.0002 1114 1111

 

#7


向楼上学习。

#8


顶刮刮!

#9


收藏

#10


这是俺的查找方法:
select column from tablename having count(column)>1 group by column

#11


珍藏

#1


http://www.oradb.net/sql/find0.htm

#2


delete from table where rowid not in (select min(rowid) from table group by 字段名)

#3


用no in效率可能会慢些,看看这个:
delete from tablename a where a.rowid!=(select max(rowid) from tablename b);

#4


delete from test a where a.rowid=(select max(rowid) from test  b)

#5


delete from test a where a.rowid>=(select min(rowid) from test  b)

#6


如何查找、删除表中重复的记录 


问题提出: 
1、当我们想要为一个表创建唯一索引时,如果该表有重复的记录,则无法创建成功。 
方法原理: 
1、Oracle中,每一条记录都有一个rowid,rowid在整个数据库中是唯一的,
  rowid确定了每条记录是在ORACLE中的哪一个数据文件、块、行上。

2、在重复的记录中,可能所有列的内容都相同,但rowid不会相同,所以只要确定出重复记录中
  那些具有最大rowid的就可以了,其余全部删除。

3、以下语句用到了3项技巧:rowid、子查询、别名。

实现方法: 
SQL> create table a (
  2  bm char(4), --编码
  3  mc varchar2(20) --名称
  4  )
  5  /

表已建立.

SQL> insert into a values('1111','1111');
SQL> insert into a values('1112','1111');
SQL> insert into a values('1113','1111');
SQL> insert into a values('1114','1111');

SQL> insert into a select * from a;

插入4个记录.

SQL> commit;

完全提交.

SQL> select rowid,bm,mc from a;

ROWID              BM   MC
------------------ ---- -------
000000D5.0000.0002 1111 1111
000000D5.0001.0002 1112 1111
000000D5.0002.0002 1113 1111
000000D5.0003.0002 1114 1111
000000D5.0004.0002 1111 1111
000000D5.0005.0002 1112 1111
000000D5.0006.0002 1113 1111
000000D5.0007.0002 1114 1111

查询到8记录.


查出重复记录
SQL> select rowid,bm,mc from a where a.rowid!=(select max(rowid) from a b where a.bm=b.bm and a.mc=b.mc);

ROWID              BM   MC
------------------ ---- --------------------
000000D5.0000.0002 1111 1111
000000D5.0001.0002 1112 1111
000000D5.0002.0002 1113 1111
000000D5.0003.0002 1114 1111

删除重复记录
SQL> delete from a a where a.rowid!=(select max(rowid) from a b where a.bm=b.bm and a.mc=b.mc);

删除4个记录.

SQL> select rowid,bm,mc from a;

ROWID              BM   MC
------------------ ---- --------------------
000000D5.0004.0002 1111 1111
000000D5.0005.0002 1112 1111
000000D5.0006.0002 1113 1111
000000D5.0007.0002 1114 1111

 

#7


向楼上学习。

#8


顶刮刮!

#9


收藏

#10


这是俺的查找方法:
select column from tablename having count(column)>1 group by column

#11


珍藏