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