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:列名
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:列名