MySQL #1093 - You can#39;t specify target table #39;giveaways#39; for update in FROM clause(MySQL #1093 - 您不能在 FROM 子句中指定目标表“赠品进行更新)
问题描述
我试过了:
UPDATE giveaways SET winner = '1' WHERE ID = (SELECT MAX(ID) FROM giveaways)
但它给出了:
#1093 - 您不能在 FROM 子句中指定目标表赠品"进行更新
#1093 - You can't specify target table 'giveaways' for update in
FROMclause
这个文章 似乎相关,但我无法使其适应我的查询.我怎样才能让它工作?
This article seems relevant but I can't adapt it to my query. How can I get it to work?
推荐答案
这是因为你的更新可能是周期性的......如果更新该记录会导致发生导致 WHERE 条件 <代码>错误代码>?你知道情况并非如此,但引擎不会.操作中也可能在桌子上存在相反的锁.
This is because your update could be cyclical... what if updating that record causes something to happen which made the WHERE condition FALSE? You know that isn't the case, but the engine doesn't. There also could be opposing locks on the table in the operation.
我认为你可以这样做(未经测试):
I would think you could do it like this (untested):
UPDATE
giveaways
SET
winner = '1'
ORDER BY
id DESC
LIMIT 1
阅读更多
这篇关于MySQL #1093 - 您不能在 FROM 子句中指定目标表“赠品"进行更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL #1093 - 您不能在 FROM 子句中指定目标表“赠品"进行更新
基础教程推荐
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 无法解决整理冲突 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
