182. 查找重复的电子邮箱
select email as `Email` from Person group by email having count(email)>1;
select t.email as `Email` from ( select email,count( email) as cnt from Person group by email ) t where t.cnt>1;