比如,表: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 slave不能同步Last_SQL_Error Error Duplicate entry
- MySQL 提示Incorrect key file for table 'xx'; try to 出错无法打开
- MySQL Got error 28 from storage engine 解决办法
- 高可用的Mysql双机热备(Mysql_HA)
- mysql 对数据表的结构和数据进行复制
- mysql数据库表的错误 got error 28 from storage engine
- MySQL存储过程中使用动态行转列
- 查看运行MySQL中的语句(查询正在执行的sql)
- mysql安装图解 mysql图文安装教程(详细说明)
- Can't connect to MySQL server on localhost (10061)解决方法