create table tmp SELECT * from lhb t where t.id not in (select max(id) from lhb group by code,date,reason);
delete from lhb where id in(select id from tmp);
drop table tmp;
mysql无法进行子查询删除,使用新建一个临时表,删除跟临时表里面不一样的数据,然后再删除临时表
create table tmp SELECT * from lhb t where t.id not in (select max(id) from lhb group by code,date,reason);
delete from lhb where id in(select id from tmp);
drop table tmp;
mysql无法进行子查询删除,使用新建一个临时表,删除跟临时表里面不一样的数据,然后再删除临时表
根据重复条件删除数据
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M