Skip to content

Commit 85fc413

Browse files
authored
Update 181._duplicate_emails.md
1 parent 3abb6e1 commit 85fc413

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/Leetcode_Solutions/181._duplicate_emails.md

+4
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,7 @@ from Person
4343
group by Email
4444
having count(1)>1
4545
```
46+
或者
47+
```sql
48+
select Email from Person group by Email having count(Email) > 1
49+
```

0 commit comments

Comments
 (0)