今天和大家聊的问题叫做 查找重复的电子邮箱 ,我们先来看题面:https://leetcode-cn.com/problems/duplicate-emails/
Write a SQL query to find all duplicate emails in a table named
Person
.
题意
编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。
解题
此题比较简单,寻找重复的数据即可,用group by Email分组后 数据个数大于1的就是重复的 。向 GROUP BY 添加条件的一种更常用的方法是使用 HAVING 子句,该子句更为简单高效。
select Email from Person group by Email having count(Email) > 1;
好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。