欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql删除重复行的实现方法

程序员文章站 2022-04-19 10:00:03
表relation create table relation( id int primary key auto_increment, userid i...

表relation

 create table relation(
 id int primary key auto_increment,
 userid int not null,
 fanid int not null
 );

插入几条数据

insert into relation(userid,fanid) 
values(1,1) ,(1,1) ,(1,1), (2,2),(2,2) ,(3,3),(3,3);

表中的数据

id userid fanid
1 1 1
2 1 1
3 1 1
4 2 2
5 2 2
6 3 3
7 3 3

去重

delete t from relation s
join relation t using(userid,fanid)
where s.id<t.id;

总结

以上所述是小编给大家介绍的mysql删除重复行的实现方法,希望对大家有所帮助