mysql 删除重复记录

Posted 梦见舟

tags:

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

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

+----+------------------+
| Id | Email |
+----+------------------+
| 1 | john@example.com |
| 2 | bob@example.com |
| 3 | john@example.com |
+----+------------------+
Id 是这个表的主键。
例如,在运行你的查询语句之后,上面的 Person 表应返回以下几行:

+----+------------------+
| Id | Email |
+----+------------------+
| 1 | john@example.com |
| 2 | bob@example.com |
+----+------------------+

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/delete-duplicate-emails
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

   DELETE t1 
   FROM
   	person t1
   	INNER JOIN person t2 
   WHERE
   	t1.id > t2.id 
   	AND t1.email = t2.email;

数据脚本

create table `person` (
	`id` int (11),
	`email` varchar (120)
); 
insert into `person` (`id`, `email`) values(‘1‘,‘bob@example.com‘);
insert into `person` (`id`, `email`) values(‘2‘,‘bob@example.com‘);
insert into `person` (`id`, `email`) values(‘3‘,‘john@example.com‘);

以上是关于mysql 删除重复记录的主要内容,如果未能解决你的问题,请参考以下文章

mysql重复记录的查询删除方法

MYSQL删除重复记录

MySQL查询删除重复记录

MySQL中删除多余的重复记录

MySQL删除重复记录只保留一条

mysql 删除重复记录语句