We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3abb6e1 commit 85fc413Copy full SHA for 85fc413
docs/Leetcode_Solutions/181._duplicate_emails.md
@@ -43,3 +43,7 @@ from Person
43
group by Email
44
having count(1)>1
45
```
46
+或者
47
+```sql
48
+select Email from Person group by Email having count(Email) > 1
49
+```
0 commit comments