gpt4 book ai didi

MySQL 错误 1005 : Foreign key constraint is incorrectly formed

转载 作者:行者123 更新时间:2023-11-29 17:28:23 25 4
gpt4 key购买 nike

我使用 MySQL 处理数据库,我有一个主日历表 date,它与我创建的另一个 astreinte_mensu 共享一些列(年和月)一些主键成功,但是当我制作外键时,出现以下错误:

ERROR 1005 (HY000) at line 33: Can't create table `testDB`.`astreinte_mensu`
(errno: 150 "Foreign key constraint is incorrectly formed")

详细的错误输出:

Cannot find an index in the referenced table where the
referenced columns appear as the first columns, or column types
in the table and the referenced table do not match for constraint.

日期表:

CREATE TABLE date(
dateID int NOT NULL,
annee int NOT NULL,
mois int NOT NULL,
semaine int NOT NULL,
jour int NOT NULL,
CONSTRAINT PK_date PRIMARY KEY (dateID,annee,mois,semaine,jour)
) Engine=innoDB;

Astreinte_mensu 表:

CREATE TABLE astreinte_mensu(
annee int,
mois int,
Personne1Nuit int,
Personne2Nuit int,
Personne1Jour int,
Personne2Jour int,
FOREIGN KEY (annee) REFERENCES date(annee),
FOREIGN KEY (mois) REFERENCES date(mois),
FOREIGN KEY (Personne1Nuit) REFERENCES contact(PersonID),
FOREIGN KEY (Personne2Nuit) REFERENCES contact(PersonID),
FOREIGN KEY (Personne1Jour) REFERENCES contact(PersonID),
FOREIGN KEY (Personne2Jour) REFERENCES contact(PersonID)
) Engine=innoDB;

我已经检查过日期表是在另一个表之前创建的并且这些列来自相同的数据类型。

有人知道可能出了什么问题吗?

提前致谢

最佳答案

MySQL 中的外键必须引用另一个具有索引(最好是唯一索引)的表中的列。当其他列是主键时,通常会发生这种情况,但只要有索引,它也可以不是主键。在当前代码中,您用五列创建了主键:

CONSTRAINT PK_date PRIMARY KEY (dateID, annee, mois, semaine, jour)

但这意味着这五个值的每个组合一起都必须是唯一的。这并不意味着任何一列都有索引。

我在您的代码中看到的直接问题是您引用了 astreinte_mensu 表中的 anneemois 。我们可以尝试向这些列添加唯一约束。这是您的代码的一个可能有效的版本:

CREATE TABLE date (
dateID int NOT NULL,
annee int NOT NULL,
mois int NOT NULL,
semaine int NOT NULL,
jour int NOT NULL,
CONSTRAINT PK_date PRIMARY KEY (dateID, annee, mois, semaine, jour),
UNIQUE KEY idx_annee (annee),
UNIQUE KEY idx_mois (mois)
) Engine=innoDB;

CREATE TABLE astreinte_mensu (
annee int,
mois int,
Personne1Nuit int,
Personne2Nuit int,
Personne1Jour int,
Personne2Jour int,
FOREIGN KEY (annee) REFERENCES date(annee),
FOREIGN KEY (mois) REFERENCES date(mois),
FOREIGN KEY (Personne1Nuit) REFERENCES contact(PersonID),
FOREIGN KEY (Personne2Nuit) REFERENCES contact(PersonID),
FOREIGN KEY (Personne1Jour) REFERENCES contact(PersonID),
FOREIGN KEY (Personne2Jour) REFERENCES contact(PersonID)
) Engine=innoDB;

我假设 contact 表有一个唯一的 PersonID 列。如果不是,这将是另一个错误原因。

关于MySQL 错误 1005 : Foreign key constraint is incorrectly formed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50836227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com