数据库去除重复数据 2019-09-11 15:34:18 浏览数 (1) 小标记一下,数据库大量重复数据去除下面是一个根据重复的name 移除的create table temp select max(id) as id from table1 group by name ;//name分组 拿到最大id 保存到临时表delete table1 where id not in(select id from temp);以上仅供参考,其他的比葫芦画瓢 数据库 max select table 数据 0 人点赞 上一篇:分享雷军22年前编写的代码