本文主要是介绍leetcode 182. 查找重复的电子邮箱,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- 查找重复的电子邮箱
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/duplicate-emails
著作权归领扣网络所有。
编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。
示例:
+----+---------+
| Id | Email |
+----+---------+
| 1 | a@b.com |
| 2 | c@d.com |
| 3 | a@b.com |
+----+---------+
根据以上输入,你的查询应返回以下结果:
+---------+
| Email |
+---------+
| a@b.com |
+---------+
说明:所有电子邮箱都是小写字母。
看了大佬们的解法,总结如下:
- 解法1
select email from person group by email having count(email) > 1;--解法2
select email from (select count(1) as t,email from person group by email) as r where r.t > 1;--解法3
select distinct(p1.email ) from person p1
join person p2 on p1.email = p2.email and p1.id != p2.id;
这篇关于leetcode 182. 查找重复的电子邮箱的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!