mysql删除重复行的实现方法

2022-05-22 0 1,100

表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删除重复行的实现方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对NICE源码网站的支持!

免责声明:
1、本网站所有发布的源码、软件和资料均为收集各大资源网站整理而来;仅限用于学习和研究目的,您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。 不得使用于非法商业用途,不得违反国家法律。否则后果自负!

2、本站信息来自网络,版权争议与本站无关。一切关于该资源商业行为与www.niceym.com无关。
如果您喜欢该程序,请支持正版源码、软件,购买注册,得到更好的正版服务。
如有侵犯你版权的,请邮件与我们联系处理(邮箱:skknet@qq.com),本站将立即改正。

NICE源码网 MySql mysql删除重复行的实现方法 https://www.niceym.com/47249.html