Oracle查询重复数据

前端之家收集整理的这篇文章主要介绍了Oracle查询重复数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

查询重复数据

select tt.* from 表 tt where 自定义条件 and tt.重复字段 in (select t.重复字段 from 表 t where 自定义条件 group by t.重复字段 having count(t.重复字段) > 1) 

查询重复数据中id最小的那个

select tt.* from 表 tt where 自定义条件 and tt.重复字段 in (select t.重复字段 from 表 t where 自定义条件 group by t.重复字段 having count(t.重复字段) > 1) and tt.id in (select min(t.id) from 表 t where 自定义条件 group by t.重复字段 having count(t.重复字段) > 1) 
原文链接:https://www.f2er.com/oracle/206743.html

猜你在找的Oracle相关文章