182. Duplicate Emails

# Write your MySQL query statement below
select distinct Email    
from Person
group by Email    
having count(*) > 1

 

posted @ 2016-08-28 10:07  阿怪123  阅读(155)  评论(0编辑  收藏  举报