LeetCode-MySQL196. 删除重复的电子邮箱

编写一个 SQL 查询,来删除 Person 表中所有重复的电子邮箱,重复的邮箱里只保留 Id 最小 的那个。

+----+------------------+
| Id | Email            |
+----+------------------+
| 1  | [email protected] |
| 2  | [email protected]  |
| 3  | [email protected] |
+----+------------------+


Id 是这个表的主键。
例如,在运行你的查询语句之后,上面的 Person 表应返回以下几行:

+----+------------------+
| Id | Email            |
+----+------------------+
| 1  | [email protected] |
| 2  | [email protected]  |
+----+------------------+

 

提示:

执行 SQL 之后,输出是整个 Person 表。
使用 delete 语句。

 

方法一:

delete p1 from person p1,person p2 where p1.email=p2.email and p1.id>p2.id;

 

方法二:

DELETE from Person 
Where Id not in 
(
    select t.id from   
    --加上这个外层筛选可以避免You can't specify target table for update in FROM clause错误
    (
        Select MIN(Id) as id
        From Person 
        Group by Email
    ) t
)

 

 

你可能感兴趣的:(数据库)