扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
SQL> desc test
Name Null? Type
----------------------------------------- -------- -----------------
ID NUMBER
--表 test有重复的记录1,10
SQL> select * from test;
ID
----------
1
2
3
4
10
1
1
1
1
1
10
11 rows selected.
--查询表中的哪些记录有重复
SQL> select * from test group by id having count(*)>1;
ID
----------
1
10
--查询出没有重复记录的结果集
SQL> select * from test group by id;
ID
----------
1
2
3
4
10
SQL> select distinct * from test;
ID
----------
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);
6 rows deleted.
SQL> commit;
Commit complete.
--删除后的查询结果集
SQL> select * from test;
ID
----------
2
3
4
1
10
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者