1.题目
编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。
2.示例
+----+---------+
| Id | Email |
+----+---------+
| 1 | a@b.com |
| 2 | c@d.com |
| 3 | a@b.com |
+----+---------+
根据以上输入,你的查询应返回以下结果:
+---------+
| Email |
+---------+
| a@b.com |
+---------+
3.答案
①借助分组查询
按email进行分组留下组内个数大于1的组。
select email from person group by email having count(*)>1;
②连接查询
自身与自身连接,查询是否存在id不同但是email相同的记录。
select distinct a.email from person a,person b where a.id!=b.id and a.email=b.email;