LeetCode 删除重复的电子邮箱

题 目 描 述 : \color{blue}题目描述:
编写一个 SQL 查询,来删除 Person 表中所有重复的电子邮箱,重复的邮箱里只保留 Id 最小 的那个。

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

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

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

思 路 分 析 : \color{blue}思路分析: 自连接,再判断是否存在一个相同的Email并且Id更大,如果存在则删除id较大的记录。

代 码 实 现 : \color{blue}代码实现:

delete p1
from Person p1
#内连接自己(自连接)
inner join Person p2
#连接条件Email相同
on p1.Email = p2.Email
#删除条件p1的id较大(删除p1的记录)
where p1.Id > p2.Id

博 客 推 荐 : \color{blue}博客推荐:
此题涉及到MySQL中的多表连接、数据的管理,请参考我的专栏
MySQL从入门到精通之SQL99语法中的连接查询
MySQL从入门到精通之数据的管理

你可能感兴趣的:(MySQL从入门到精通)