在限制其部分表后从 DataJoint 表中删除时出现 MySQL 操作错误:“您无法指定目标表:“part_table””

发布于 2025-01-11 13:37:03 字数 725 浏览 0 评论 0原文

在 Ubuntu 上使用 DataJoint Python (0.12.9) 和 MySQL 5.7 。

我认为这是一个相当标准的操作,但遇到了错误。

有一个名为 Table 的表,其中包含 Table.Part 部分。

像这样限制 Table


Table & Table.Part

为我提供 TableTable.Part 共有的条目。但是,将其包装在删除语句(deletedelete_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅笑依然 2025-01-18 13:37:03

也许这会起作用

(Table & (Table & Table.Part).fetch('KEY')).delete()

“目标表”是“#table__part” 很可能是因为您也从 Table.Part 表中删除条目(级联删除)

Perhaps this would work

(Table & (Table & Table.Part).fetch('KEY')).delete()

"target table" is "#table__part" is likely because you are also deleting entries from the Table.Part table as well (cascade delete)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文