gpt4 book ai didi

Mysql 抛出一个错误

转载 作者:太空宇宙 更新时间:2023-11-03 11:17:20 25 4
gpt4 key购买 nike

DELETE FROM mytable WHERE id IN (SELECT id FROM mytable where roll=1)

我有一个表我的表。我的上述查询引发错误。

不能在 FROM 子句中指定要更新的目标表 'mytable'

最佳答案

来自MySQL documentation :

Currently, you cannot delete from a table and select from the same table in a subquery.

幸运的是,您不需要子查询。只是做:

DELETE FROM mytable WHERE roll=1

启动起来更短更清晰。

关于Mysql 抛出一个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4182941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com