SQL-Leetcode182:查找重复的电子邮箱
程序员文章站
2022-07-08 13:24:13
...
题目
说明:所有电子邮箱都是小写字母。
方法:
# Write your MySQL query statement below
SELECT Email
FROM Person
GROUP BY Email
HAVING COUNT(Email)>1;