在 MySQL 数据库中使用 null。三个外键之一必须不为空。

发布于 2024-11-26 19:38:52 字数 84 浏览 3 评论 0原文

我的问题是我必须创建具有外键的表,并且三个外键之一必须为 NOT NULL,其余的必须为 NULL。 MySQL 有什么办法可以解决这个问题吗? 迈克尔.

my problem is that i have to make table which will have foreign keys, and one of three foreign keys have to be NOT NULL and rest have to be NULL.
Is there anything in MySQL to solve it?
Michael.

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

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

发布评论

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

评论(2

夏花。依旧 2024-12-03 19:38:52

避免可为空的外键 - 它们有许多问题和缺点。通常,将这些列放在单独的表中会更容易、更好,这样当不存在值时就不必为它们创建空值。这应该是默认方法:针对每种不同情况使用范式,除非您有特殊原因将三列合并到一个表中。

Avoid nullable foreign keys - they have a number of problems and disadvantages. It's generally easier and better to put those columns in separate tables so that you don't have to create nulls for them when no value exists. That ought to be the default approach: Normal Form for each distinct case unless you have some special reason to combine the three columns into one table.

风情万种。 2024-12-03 19:38:52

外键约束示例:

CREATE TABLE parent 
(
    id INT NOT NULL, PRIMARY KEY (id)
) ENGINE=INNODB;

CREATE TABLE child 
(
    id INT, parent_id INT,
    INDEX par_ind (parent_id),
    FOREIGN KEY (parent_id) REFERENCES parent(id)

) ENGINE=INNODB;

FOREIGN KEY Constraints example:

CREATE TABLE parent 
(
    id INT NOT NULL, PRIMARY KEY (id)
) ENGINE=INNODB;

CREATE TABLE child 
(
    id INT, parent_id INT,
    INDEX par_ind (parent_id),
    FOREIGN KEY (parent_id) REFERENCES parent(id)

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