SQL implementation of LeetCode (182. Duplicate mailboxes)

SQL implementation of LeetCode (182. Duplicate mailboxes)

[LeetCode] 182.Duplicate Emails

Write a SQL query to 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 are in lowercase.

This question asks us to find duplicate email addresses, so the most direct way is to use the fixed combination of Group by...Having Count(*)..., the code is as follows:

Solution 1:

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

We can also use internal intersection to do this, using Email to internally intersect the two tables, and then return rows with different IDs, which means that two different people use the same email address:

Solution 2:

SELECT DISTINCT p1.Email FROM Person p1
JOIN Person p2 ON p1.Email = p2.Email
WHERE p1.Id <> p2.Id;

References:

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

This is the end of this article about SQL implementation of LeetCode (182. Duplicate mailboxes). For more relevant SQL implementation of duplicate mailboxes, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • SQL implementation of LeetCode (196. Delete duplicate mailboxes)
  • SQL implementation LeetCode (185. Top three highest salaries in the department)
  • SQL implementation of LeetCode (184. The highest salary in the department)
  • SQL implementation of LeetCode (183. Customers who have never placed an order)
  • SQL implementation of LeetCode (181. Employees earn more than managers)
  • SQL implements LeetCode (180. Continuous numbers)
  • C++ implementation of LeetCode (179. Maximum number of combinations)
  • SQL implementation of LeetCode (197. Rising temperature)

<<:  CSS setting div background image implementation code

>>:  Example of using #include file in html

Recommend

Zabbix configuration DingTalk alarm function implementation code

need Configuring DingTalk alarms in Zabbix is ​​s...

Shorten the page rendering time to make the page run faster

How to shorten the page rendering time on the bro...

How to make CSS child elements highly consistent with parent elements

Absolute positioning method: (1) Set the parent e...

A brief analysis of the difference between ref and toRef in Vue3

1. ref is copied, the view will be updated If you...

JavaScript basics for loop and array

Table of contents Loop - for Basic use of for loo...

What is MIME TYPE? MIME-Types type collection

What is MIME TYPE? 1. First, we need to understand...

HTML scroll bar textarea attribute setting

1. Overflow content overflow settings (set whether...

MySQL 8.0.20 installation and configuration tutorial under Docker

Docker installs MySQL version 8.0.20 for your ref...

How to uninstall MySQL 5.7.19 under Linux

1. Find out whether MySQL was installed before Co...

Detailed explanation of the problem of CSS class names

The following CSS class names starting with a num...

Understanding of haslaylout and bfc parsing

1. haslayout and bfc are IE-specific and standard ...

10 Underused or Misunderstood HTML Tags

Here are 10 HTML tags that are underused or misun...

Summary of knowledge points about covering index in MySQL

If an index contains (or covers) the values ​​of ...