码迷,mamicode.com
首页 > 数据库 > 详细

数据库删除重复数据 sql

时间:2018-10-05 15:01:42      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:log   count   HERE   sql   name   color   sel   where   min   

delete from `user`
where id in( SELECT * from(select id from `user` WHERE id not in (select min(id) from `user` group by names having count(names)>1) ) tep)

红色为查询出重复数据的id作为要删除的数据条件

数据库删除重复数据 sql

标签:log   count   HERE   sql   name   color   sel   where   min   

原文地址:https://www.cnblogs.com/libiao-libar/p/9744700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!