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) 

你可能感兴趣的:(数据库,oracle)