在限制其部分表后从 DataJoint 表中删除时出现 MySQL 操作错误:“您无法指定目标表:“part_table””
在 Ubuntu 上使用 DataJoint Python (0.12.9) 和 MySQL 5.7 。
我认为这是一个相当标准的操作,但遇到了错误。
有一个名为 Table
的表,其中包含 Table.Part
部分。
像这样限制 Table
:
Table & Table.Part
为我提供 Table
中 Table.Part
共有的条目。但是,将其包装在删除语句(delete
或 delete_quick
)中:
(Table & Table.Part).delete()
给我以下错误:
OperationalError: (1093, "You can't specify target table '#table__part' for update in FROM clause")
不明白为什么“目标表”是' #table__part'
这里,当我尝试从 '#table'
中删除时。
Using DataJoint Python (0.12.9) on Ubuntu with MySQL 5.7 .
Am running into an error with what I believed to be a fairly standard operation.
Have a table named Table
with a part Table.Part
.
Restricting Table
as such:
Table & Table.Part
gives me the entries in Table
common to Table.Part
. However, wrapping this in a delete statement (either delete
or delete_quick
) as such:
(Table & Table.Part).delete()
gives me the following error:
OperationalError: (1093, "You can't specify target table '#table__part' for update in FROM clause")
Do not understand why "target table" is '#table__part'
here, when I am attempting to delete from '#table'
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这会起作用
“目标表”是“#table__part” 很可能是因为您也从 Table.Part 表中删除条目(级联删除)
Perhaps this would work
"target table" is "#table__part" is likely because you are also deleting entries from the Table.Part table as well (cascade delete)