Oracle 查找重复记录的方法

Oracle 查找重复记录的方法:

select * from table1 group by c1,c2,c3 having count(*) >1;

原文地址:https://www.cnblogs.com/emanlee/p/14991949.html