Leetcode 182. Duplicate Emails

# Write your MySQL query statement below
select Email
from Person
group by Email 
having count(Email)>1;
posted @ 2019-04-04 22:45  周洋  阅读(127)  评论(0编辑  收藏  举报