oracle 简单去重过程

我们两清 提交于 2020-01-10 20:09:43

Oracle利用rowid删除表中重复记录

 

先看表myemp

 

 

查出有重复数据的记录

 

 

查出没有重复数据的记录

 

 

查出不重复的记录

 

 

或者

select * from myemp e where rowid = (select max(rowid) from myemp e2 where e.userid = e2.userid and e.username = e2.username and e.salary = e2.salary)

 

 

如何删除重复数据

1、  当有大量重复数据存在并且在列userid,username,salary上有索引的情况下

delete myemp where rowid not in (select max(rowid) from myemp group by userid,username,salary);

2、 适用于少量重复数据的情况(当有大量数据时,效率很低)

delete myemp e where rowid <> (select max(rowid) from myemp e2 where e.userid = e2.userid and e.username = e2.username and e.salary = e2.salary);

3、 exception方法,适合大量重复数据的情况

首先建立exception

 

然后添加约束,将错误记录到表exceptions

 

建立重复数据临时表

 

删除有重复的所有数据

 

将临时表中的非重复数据重新插入原表

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!