欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【leetcode系列】【SQL】【简单】查找重复的电子邮箱

程序员文章站 2022-07-08 13:20:28
...

题目:

【leetcode系列】【SQL】【简单】查找重复的电子邮箱

题目链接: https://leetcode-cn.com/problems/duplicate-emails/

 

解题思路:

group by + having组合使用

 

SQL:

select Email from
(select Email, count(*) as num from Person group by Email having num > 1) a

 

相关标签: leetcode系列