182. Duplicate Emails (E)

来源:互联网 发布:windows原版壁纸 编辑:程序博客网 时间:2024/05/16 19:35

182. Duplicate Emails

Description Submission Solutions
  • Total Accepted: 32668
  • Total Submissions: 88770
  • Difficulty: Easy
  • Contributors: Admin

Write a SQL query to find all duplicate emails in a table named Person.

+----+---------+| Id | Email   |+----+---------+| 1  | a@b.com || 2  | c@d.com || 3  | a@b.com |+----+---------+

For example, your query should return the following for the above table:

+---------+| Email   |+---------+| a@b.com |+---------+

Note: All emails are in lowercase.

Subscribe to see which companies asked this question.

SELECT Email FROM Person GROUP BY Email HAVING COUNT(Email)>1;



0 0