45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:删除Oracle中重复的数据的方法

删除Oracle中重复的数据的方法

2016-09-09 12:48:24 来源:www.45fan.com 【

删除Oracle中重复的数据的方法

Oracle 数据库中查询重复数据:

select * from employee group by emp_name having count (*)>1;

Oracle 查询可以删除的重复数据

select t1.* from employee t1 where (t1.emp_name) in (SELECT t2.emp_name from employee t2 group by emp_name having count (*)>1) and t1.emp_id not in (select min(t3.emp_id) from employee t3 group by emp_name having count (*)>1);

Oracle 删除重复数据

delete from employee t1 where (t1.emp_name) in (SELECT t2.emp_name from employee t2 group by emp_name having count (*)>1) and t1.emp_id not in (select min(t3.emp_id) from employee t3 group by emp_name having count (*)>1);


本文地址:http://www.45fan.com/a/question/74098.html
Tags: oracle 数据 重复
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部