# Write your MySQL query statement below
select t.Email
from (
select Email, count(1) count_num
from Person
group by Email
) t
where t.count_num > 1;
Leetcode | 182. 查找重复的电子邮箱
最新推荐文章于 2024-11-08 23:27:36 发布
# Write your MySQL query statement below
select t.Email
from (
select Email, count(1) count_num
from Person
group by Email
) t
where t.count_num > 1;