码迷,mamicode.com
首页 > 其他好文 > 详细

【Leetcode】Duplicate Emails

时间:2016-05-18 19:13:45      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

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

题目:
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.

思路:
group by 将数据划分成一组一组的。。那么根据什么来划分呢,就是根据having后面的条件,一般是函数 如count sum

算法:

select Email from Person group by Email having count(Email)>1

【Leetcode】Duplicate Emails

标签:

原文地址:http://blog.csdn.net/yeqiuzs/article/details/51416248

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!