Leetcode 182. Duplicate Emails

# Write your MySQL query statement below
select Email
from Person
group by Email 
having count(Email)>1;
原文地址:https://www.cnblogs.com/zywscq/p/10657417.html