我的编程空间,编程开发者的网络收藏夹
学习永远不晚

You can‘t specify target table ‘表名‘ for update in FROM clause错误

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

You can‘t specify target table ‘表名‘ for update in FROM clause错误

修改 MySQL 一些数据的时候,update 同表子查询筛选的数据,出现了如下错误:

#1093 - You can't specify target table 'd_no' for update in FROM clause

原因:在 MySQL文档中已经详细的指明了该问题。优化器默认会合并 derived table (实际上是一种特殊的subquery,它位于SQL语句中FROM子句里面,可以看做是一个单独的表)到外边的查询块,仅当强制具体化 derived table 时,这才有效。

解决方法:前两种比较推荐,不推荐考虑第三种和第四种

包装子查询

update a set status=1 where id in (select * from (select id from a where status is null) as b)

 2、将子查询移动到待更新列表中

update a as A ,(select id from a where status is null) as B set status=1 where A.id = B.id

 optimizer_switch 下的 derived_merge 设置为 off

update  a set status=1 where id in (select id from a where status is null)

直接重写子查询,

来源地址:https://blog.csdn.net/m0_56166876/article/details/127581064

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

You can‘t specify target table ‘表名‘ for update in FROM clause错误

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

解决MySQL报错:You can‘t specify target table ‘region‘ for update in FROM clause

目录前言示例一示例二示例三示例四需要注意的地方总结前言首先明确一点这个错误只会发生在delete语句或者update语句,拿update来举例 : update A表 set A列 = (select B列 from A表); 这种写法就
2023-02-01

解决MySQL报错:You can‘t specify target table ‘region‘ for update in FROM clause

这篇文章主要给大家介绍了关于MySQL报错:You can‘t specify target table ‘region‘ for update in FROM clause的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
2023-02-01

MySQL出现You can‘t specify target table for update in FROM clause错误的解决方法

MySQL出现You can‘t specify target table for update in FROM clause错误的解决方法 分析原因解决方法 分析原因 在MySQL中,可能会遇到You can't specif
2023-08-19

MySQL报错:You can‘t specify target table ‘region‘ for update in FROM clause如何解决

这篇文章主要讲解了“MySQL报错:You can‘t specify target table ‘region‘ for update in FROM clause如何解决”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思
2023-07-05

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

DELETE FROM Persons WHERE Id NOT IN (SELECT MIN(Id)AS id FROM Persons GROUP BY Email) ; You can"t specify target table "Person" f
You can't specify target table 'Person' for update in FROM clause
2016-03-28

update mysql row (You can't specify target table 'x' for update in FROM clause)

sql语句(update/delete都会出现此问题)update x set available_material_id = null where id not in (select id from x where additional_info = 1);
update mysql row (You can't specify target table 'x' for update in FROM clause)
2018-03-17

MySQL 中 You can't specify target table '表名' for update in FROM claus

在MySQL中,写SQL语句的时候 ,可能会遇到You can"t specify target table "表名" for update in FROM clause这样的错误,它的意思是说,不能先select出同一表中的某些值,再update这个表(在同
MySQL 中 You can't specify target table '表名' for update in FROM claus
2017-10-12

You can't specify target table 'table_name' for update in FROM clause - 如何解决MySQL报错:无法在FROM子句中更

在进行MySQL数据库开发过程中,我们有时会遇到以下报错信息:You can't specify target table 'table_name' for update in FROM clause(无法在FROM子句中更新目标表)。这个
2023-10-21

You can't specify target table 'table_name' for update in FROM clause - 如何解决MySQL报错:无法在FROM子句中更

你好,下面是一篇1500字以内的文章,标题为:You can't specify target table 'table_name' for update in FROM clause - 如何解决MySQL报错:无法在FROM子句中更新目
2023-10-22

编程热搜

目录