MySQL:非重复密钥的重复密钥错误1022

时间:2020-08-27 14:07:36

标签: mysql foreign-keys constraints percona

我正在尝试创建具有不同外键约束的表,但是mysql抱怨此DDL:

CREATE TABLE tasks (
        id INTEGER NOT NULL AUTO_INCREMENT, 
        `createdAt` DATETIME NOT NULL DEFAULT now(), 
        `updatedAt` DATETIME NOT NULL DEFAULT NOW() ON UPDATE NOW(), 
        `createdBy_user_id` INTEGER NOT NULL, 
        `updatedBy_user_id` INTEGER NOT NULL, 
        status ENUM('open','closed') NOT NULL, 
        customer_id INTEGER NOT NULL, 
        `projectDescription` TEXT, 
        PRIMARY KEY (id), 
        CONSTRAINT user_id_fk FOREIGN KEY(`createdBy_user_id`) REFERENCES users (id), 
        CONSTRAINT customer_id_fk FOREIGN KEY(customer_id) REFERENCES `Customer` (id), 
        CONSTRAINT user_up_id_fk FOREIGN KEY(`updatedBy_user_id`) REFERENCES users (id)
)COLLATE utf8mb4_german2_ci CHARSET=utf8mb4

我得到的错误ERROR 1022 (23000): Can't write; duplicate key in table 'tasks'毫无道理,因为每个约束都有不同的名称,并应用于不同的列。

奇怪的是,如果我删除了fk后缀并将其替换为constr,MySQL不会抱怨。

有人知道为什么MySQL 5.7(Server version: 5.7.30-33 Percona Server (GPL), Release 33, Revision 6517692)会这样吗?

1 个答案:

答案 0 :(得分:1)

您在另一个表中使用了具有相同名称的约束。

这是一种容易重现此问题的方法:

CREATE TABLE foo
(
  id int not null auto_increment primary key
);

CREATE TABLE bar
(
  id int not null auto_increment primary key,
  foo_id int,
  
  CONSTRAINT foo_id_fk FOREIGN KEY(`foo_id`) REFERENCES foo(id) -- <- Check this constraint name
);

CREATE TABLE hello
(
  id int not null auto_increment primary key,
  foo_id int,
  
  CONSTRAINT foo_id_fk FOREIGN KEY(`foo_id`) REFERENCES foo(id) -- <-- same constraint name than before
);

模式错误:错误:ER_DUP_KEY:无法编写;表“ hello”中的重复键

要解决此问题,请确保FK名称是唯一的。您可以省略约束的命名,因此MySQL会为您创建一个约束。

--        v----------- no name here
CONSTRAINT FOREIGN KEY(`createdBy_user_id`) REFERENCES users (id)

或者您可以使用naming convention