外键约束问题

发布于 2024-08-08 15:29:26 字数 210 浏览 8 评论 0原文

我收到错误 #1005 - 无法创建表 (errno: 150)。

我已经完成了以下清单:

  • 两个表都是 InnoDB
  • 列的类型相同(INT)
  • 属性相同(UNSIGNED NOT NULL)
  • 排序规则相同
  • 我已经尝试使用外键上的索引,但仍然没有工作(MySQL 5 不需要它们)

I am getting error #1005 - Can't create table (errno: 150).

I have been through the checklist of:

  • both tables are InnoDB
  • the columns are the same type (INT)
  • attributes are the same (UNSIGNED NOT NULL)
  • the collation is the same
  • I have tried with indexes on the foreign keys, it still doesn't work (and they shouldn't be needed for MySQL 5)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

若沐 2024-08-15 15:29:26

问题出在我的语法上。而不是应该

REFERENCES `table`.`col`

REFERENCES `table` (`col`)

这个问题可以删除。

The problem was with my syntax. Instead of

REFERENCES `table`.`col`

it should be

REFERENCES `table` (`col`)

This question can be deleted.

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