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、再来根据这个结果集做删除操作。这样就好了。
不知道大家碰到是不是这样解决的,或者还有更好的解决的办法。一定要告诉我哦。
分享到:
相关推荐
### MySQL中“You can’t specify target table for update in FROM clause”错误解决方法 在MySQL数据库管理过程中,遇到SQL语法错误是家常便饭,其中一种较为常见的错误是“You can’t specify target table for ...
在MySQL数据库中,"You can’t specify target table for update in FROM clause"是一个常见的错误提示,意味着在同一个SQL语句中,你不能直接在一个`UPDATE`或`DELETE`语句的`FROM`子句中引用你想要更新或删除的表...
在MySQL中,错误1093 - "You can't specify target table for update in FROM clause" 是一个常见的问题,它发生在尝试在`UPDATE`语句的`FROM`子句中直接引用要更新的同一张表时。这个错误表示MySQL不支持在`UPDATE`...
...
在MySQL数据库中,错误代码1093 - "You can’t specify target table ‘t’ for update in FROM clause" 是一个常见的错误,它通常发生在尝试在一个`UPDATE`语句的`FROM`子句中直接引用要更新的目标表时。...
错误消息"You can't specify target table 'wms_cabinet_form' for update in FROM clause"清楚地指出,在同一个UPDATE语句中,你不能先从`wms_cabinet_form`表中选择一些值,然后立即更新这个表。 在原始的UPDATE...
在平常的项目中,经常会碰到这样的问题:我需要在一张标中同时更新和查询出来的...结果却报错,报错信息为:You can't specify target table 'tb_test' for update in FROM clause,不能在同一语句中update,select同
导致了`java.sql.SQLException: You can’t specify target table ‘chat_messages’ for update in FROM clause`的错误。为了解决这个问题,我们需要对查询部分进行修改,确保它不直接引用正在插入的表。 修正后的...
5. 更新同一表数据的问题:`ERROR 1093 (HY000): You can't specify target table 'context' for update in FROM clause`表示不能在FROM子句中直接更新同一张表。 6. 主键自动增长问题:`ERROR 1062`可能是由于试图...
错误提示是 `ERROR 1093 (HY000): You can't specify target table 'apples' for update in FROM clause.` 这意味着MySQL不允许在 `UPDATE` 语句的 `FROM` 子句中直接引用要更新的表。 解决办法: 尽管MySQL不支持...
这会导致错误 `[Err] 1093 – You can't specify target table 'a' for update in FROM clause`。MySQL不允许在`SET`或`WHERE`子句中直接引用被更新的表进行子查询。这是因为在执行过程中,MySQL无法确定子查询的...
这里要注意,子查询需要使用别名,并且需要使用`SELECT * FROM (…)`的格式,避免`You can't specify target table 'a_tmp' for update in FROM clause`错误。 **高级方法:多字段去重** 当需要根据多个字段进行...
picture postcard showing the area you live in and some beautiful stamps for my kids who are stamp collectors. Do not use an envelop, I collect USED postcards sent to me. Write on the postcard that it ...