You can't specify target table for update in FROM clause 处理

You can't specify target table 't_coupon_new ' for update in FROM clause

在给mysql做数据处理时,一开始写了如下sql来删除重复导入的数据:

delete from t_coupon_new where id in( select e.id
from t_coupon_new e,t_coupon_new f where e.sourceid=f.sourceid and
e.source=f.source and e.createtime<f.createtime)
但一执行,出现标题所示的异常。

百度一下,知道了原因:这个异常的 大概意思就是 对于更新中的from语句,你指定不了一个目标表 t_coupon_new 。 大概就是 随着你的删除操作 前面的重复条件查询结果集也在动态的跟新,这样如果还允许你删除的话,后果是无法想象的,所以这时不能让你删除数据。 数据库系统原理 上是这么说的Problem: as we delete tuples from deposit, the average balance changes Solution used in SQL: 1. First, compute avg balance and find all tuples to delete 2. Next, delete all tuples found above (without recomputing avg or
retesting the tuples)

如是,修改了一下SQL为:
delete from t_coupon_new where id in( select id from (select e.id id
from t_coupon_new e,t_coupon_new f where e.sourceid=f.sourceid and
e.source=f.source and e.createtime<f.createtime) a);
这样就好了。解决的原理就是:

就是让要查询出来的id集合不随删除 过程而动态的改变。 所以,1、先查询出所有重复的数据里,较早的那个数据的id作为一个结果集保存 2、再来根据这个结果集做删除操作。这样就好了。

不知道大家碰到是不是这样解决的,或者还有更好的解决的办法。一定要告诉我哦。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值