mysql删除表中某一字段重复的记录

2019/6/30 18:54:05

本文主要是介绍mysql删除表中某一字段重复的记录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

比如,表:event(id int(10) auto_increment primary key,
                sid int(10)not null,
                detail text)

我想删除表event中sid重复的记录,请问有没有这样SQL语句?或是通过其它方法?

复制代码 代码如下:

delete from event as e 
where id != (select min(id) from event where sid=e.sid); 

or 
复制代码 代码如下:

delete from event 
where sid not in (select mid from (select sid ,min(id) as mid from event group by sid)) 

应该是有用的代码
复制代码 代码如下:

alter ignore table event add unique index idu_sid (sid);
alter table event drop index idu_sid;


这篇关于mysql删除表中某一字段重复的记录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程