[LeetCode] 182.Duplicate EmailsWrite a SQL query to find all duplicate emails in a table named Person.
For example, your query should return the following for the above table:
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:
|
<<: CSS setting div background image implementation code
>>: Example of using #include file in html
need Configuring DingTalk alarms in Zabbix is s...
How to shorten the page rendering time on the bro...
Absolute positioning method: (1) Set the parent e...
1. ref is copied, the view will be updated If you...
Table of contents Loop - for Basic use of for loo...
What is MIME TYPE? 1. First, we need to understand...
1. Overflow content overflow settings (set whether...
Docker installs MySQL version 8.0.20 for your ref...
1. Find out whether MySQL was installed before Co...
The following CSS class names starting with a num...
1. haslayout and bfc are IE-specific and standard ...
Table of contents How to view the source code of ...
1. There are many Python version management tools...
Here are 10 HTML tags that are underused or misun...
If an index contains (or covers) the values of ...