mysql 删除重复记录,只保留id字段值最大的记录

delete from tb_table where id not in (select maxid from (select max(id) as maxid from tb_table group by sample_code) b);

tb_table:表名;

id,sample_code:列名

posted @ 2019-03-07 18:13  未码痴騲丶  阅读(739)  评论(0编辑  收藏  举报