SQL 删除重复的电子邮箱

Posted sumelt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL 删除重复的电子邮箱相关的知识,希望对你有一定的参考价值。

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

+----+------------------+
| Id | Email            |
+----+------------------+
| 1  | [email protected] |
| 2  | [email protected]  |
| 3  | [email protected] |
+----+------------------+
Id 是这个表的主键。

例如,在运行你的查询语句之后,上面的 Person 表应返回以下几行:

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

Solution Code

delete 
from Person 
where Id not in
(
    select p.min
    from
    (
        select min(Id) as min 
        from Person 
        group by Email
    ) as p
)

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

以上是关于SQL 删除重复的电子邮箱的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode SQL 196. 删除重复的电子邮箱

2022-12-07:删除重复的电子邮箱。删除重复数据后,id=3的数据被删除。请问sql语句如何写? DROP TABLE IF EXISTS `person`; CREATE TABLE `per

MySQL删除重复的电子邮箱

每日SQL打卡​​​​​​​​​​​​​​​DAY 3丨196. 删除重复的电子邮箱难度简单

196. 删除重复的电子邮箱

删除重复的电子邮箱