Oracle删除重复的数据,Oracle数据去重复
Oracle删除重复的数据,Oracle数据去重复
发布时间:2016-12-28 来源:查字典编辑
摘要:Oracle数据库中查询重复数据:select*fromemployeegroupbyemp_namehavingcount(*)>1;Or...

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);

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Oracle教程学习
热门Oracle教程学习
编程开发子分类