SQL语句查找重复记录

select * from AM_C4_ENTRY t where t.created_by in
(
select t.created_by from AM_C4_ENTRY t group by t.created_by having count(t.created_by) > 1
) ;

原文地址:https://www.cnblogs.com/llcdbk/p/4426092.html