删除一些不在或者在集合中的数据
我碰到的问题是:用户对某一操作多次点击了,我都是insert的,所以新增了很多重复操作的记录数据,现在是保存最新的一条,所以找出最新的,然后删除不是最新的那些
原本的操作:
delete from tableA where id not in
(
select MAX( id ) review_record_id from tableA GROUP BY name, age
)
但是这样会报错,You can’t specify target table ‘portal_expert_review_record_20210819’ for update in FROM clause(不能为FROM子句中的更新指定目标表),然后就是需要把查出来的数据作为新的表进行操作才行。
修改后:
delete from tableA where id not in
(
select * from
(
select MAX( id ) review_record_id from tableA GROUP BY name, age
) t
)