File tree 2 files changed +22
-2
lines changed
solution/0100-0199/0182.Duplicate Emails
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 38
38
39
39
### ** SQL**
40
40
41
- ```
41
+ ``` sql
42
42
select Email from Person group by Email having count (Email) > 1
43
43
```
44
44
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
+
45
55
<!-- tabs:end -->
Original file line number Diff line number Diff line change @@ -53,8 +53,18 @@ Person table:
53
53
54
54
### ** SQL**
55
55
56
- ```
56
+ ``` sql
57
57
select Email from Person group by Email having count (Email) > 1
58
58
```
59
59
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
+
60
70
<!-- tabs:end -->
You can’t perform that action at this time.
0 commit comments