leecode中的SQL题(六)

编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。

+----+---------+
| Id | Email   |
+----+---------+
| 1  | [email protected] |
| 2  | [email protected] |
| 3  | [email protected] |
+----+---------+

根据以上输入,你的查询应返回以下结果:

+---------+
| Email   |
+---------+
| [email protected] |
+---------+

题目分析:
两表关联,查询id不同,email相同的行。

答案:

select distinct a.Email from person a, person b
where a.email = b.email and a.id <> b.id; 

你可能感兴趣的:(leecode中的SQL题(六))