SQL> desc test ID 11 rows selected. SQL> select * from test group by id having count(*)>1; ID ID SQL> select distinct * from test; ID 6 rows deleted. SQL> commit; Commit complete. ID
Name Null? Type
----------------------------------------- -------- -----------------
ID NUMBER
--表 test有重复的记录1,10
SQL> select * from test;
----------
1
2
3
4
10
1
1
1
1
1
10
--查询表中的哪些记录有重复
----------
1
10
--查询出没有重复记录的结果集
SQL> select * from test group by id;
----------
1
2
3
4
10
----------
1
2
3
4
10
--删除重复的记录
SQL> delete from test a where a.rowid!=(select max(rowid) from test b
2 where a.id=b.id);
--删除后的查询结果集
SQL> select * from test;
----------
2
3
4
1
10