Skip to content

Commit ac11d9a

Browse files
committed
feat: add sql solution to lc problems: No.0182
No.0182.Duplicate Emails
1 parent a570a97 commit ac11d9a

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

solution/0100-0199/0182.Duplicate Emails/README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,18 @@
3838

3939
### **SQL**
4040

41-
```
41+
```sql
4242
select Email from Person group by Email having count(Email) > 1
4343
```
4444

45+
```sql
46+
# Write your MySQL query statement below
47+
SELECT DISTINCT
48+
p1.email AS "Email"
49+
FROM
50+
person AS p1
51+
JOIN person AS p2 ON p1.id != p2.id
52+
AND p1.email = p2.email
53+
```
54+
4555
<!-- tabs:end -->

solution/0100-0199/0182.Duplicate Emails/README_EN.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,18 @@ Person table:
5353

5454
### **SQL**
5555

56-
```
56+
```sql
5757
select Email from Person group by Email having count(Email) > 1
5858
```
5959

60+
```sql
61+
# Write your MySQL query statement below
62+
SELECT DISTINCT
63+
p1.email AS "Email"
64+
FROM
65+
person AS p1
66+
JOIN person AS p2 ON p1.id != p2.id
67+
AND p1.email = p2.email
68+
```
69+
6070
<!-- tabs:end -->

0 commit comments

Comments
 (0)