
题目描述
Write a SQL query to find all duplicate emails in a table named Person.
1 |
+----+---------+ |
For example, your query should return the following for the above table:
1 |
+---------+ |
这题考查having语句的用法
代码实现
1 |
select email |

题目描述
Write a SQL query to find all duplicate emails in a table named Person.
1 |
+----+---------+ |
For example, your query should return the following for the above table:
1 |
+---------+ |
这题考查having语句的用法
代码实现
1 |
select email |
近期评论