例子:
delete from users where id not in (
select t.max_id from
(select max(id) as max_id from users group by name) as t
)
思路:根据你要去重的数据进行分组 比如上面的name
group by 去重,搜索出最大id也可以最小 然后弄成一张表比如上面的t
Z再次select 出id 用delete 删除
(因为因为在MYSQL里,不能先select一个表的记录,再按此条件进行更新和删除同一个表的记录。)