MySQL 中外键是强制的吗?

发布于 2024-10-04 02:52:52 字数 75 浏览 2 评论 0原文

我需要在 MySQL 中分配外键吗?

(Navicat for MySQL、PHP,我正在编写一个社交网络是为了好玩)

Do I need to assign a foreign key in MySQL?

(Navicat for MySQL, PHP, I'm programming a social network for sake of fun)

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

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

发布评论

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

评论(1

野侃 2024-10-11 02:52:52

请参阅此 http://www.databasejournal .com/features/mysql/article.php/2248101/Referential-Integrity-in-MySQL.htm

您可以在任何位置“定义”外键
MySQL 表类型(包括
默认的 MyISAM 表类型),但是它们
实际上并没有做任何事情 - 他们是
仅用于强制引用
InnoDB 表的完整性。

OP 应该被原谅认为这是一个“想象的”概念。

See this http://www.databasejournal.com/features/mysql/article.php/2248101/Referential-Integrity-in-MySQL.htm

You can 'define' a foreign key in any
MySQL table type (including the
default MyISAM table type), but they
do not actually do anything - they are
only used to enforce referential
integrity in InnoDB tables.

The OP should be excused to think it is an "imaginary" concept.

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