[Leetcode] Duplicate Emails Duplicate Mailbox

Source: Internet
Author: User

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

+----+---------+| Id | Email   |+----+---------+| 1  | [Email protected] | | 2  | [Email protected] | | 3  | [Email protected] |+----+---------+

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

+---------+| Email   |+---------+| [Email protected] |+---------+

Note: All emails is in lowercase.

This problem lets us ask for duplicate mailbox, then the most direct way is to use GROUP by ... Having Count (*) ... Fixed collocation to do, the code is as follows:

Solution One:

SELECT  from GROUP  by Email  having COUNT (*>1;

We can also use the internal exchange to do, with an email to two tables, and then return the different ID lines, then two different people use the same mailbox:

Solution Two:

SELECT DISTINCT  from Person P1 JOIN  on = P2. EmailWHERE<> p2. Id;

Resources:

Https://leetcode.com/discuss/53206/a-solution-using-a-group-by-and-another-one-using-a-self-join

Leetcode all in one topic summary (continuous update ...)

[Leetcode] Duplicate Emails Duplicate Mailbox

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.