我试图(在一条语句中)删除一行及其所有关系,即使所有这些关系都不存在。关于删除的级联不是可选的,我希望避免子查询。
以下是由于外键关系而失败的示例:
CREATE TABLE test(id integer, title varchar(100), primary key(id));
INSERT into test(id, title) values(1, "Hello");
CREATE TABLE ref_a(id integer, test_id integer, primary key(id), key(test_id), constraint foreign key(test_id) references test(id));
INSERT into ref_a(id, test_id) values(1, 1);
CREATE TABLE ref_b(id integer, test_id integer, primary key(id), key(test_id), constraint foreign key(test_id) references test(id));
SET GLOBAL FOREIGN_KEY_CHECKS=1;
DELETE test, ref_a, ref_b FROM test
LEFT JOIN ref_a ON ref_a.test_id = test.id
LEFT JOIN ref_b ON ref_b.test_id = test.id
WHERE test.id = 1;
这失败,并显示错误
Error Code: 1451. Cannot delete or update a parent row: a foreign key constraint fails (`product`.`ref_a`, CONSTRAINT `ref_a_ibfk_1` FOREIGN KEY (`test_id`) REFERENCES `test` (`id`))
这有可能吗?
DB是InnoDb。 MySql v 5.6.36
答案 0 :(得分:1)
对于您的问题,有三个选择:
启用ON DELETE CASCADE
。
但这显然不是您的选择
在运行查询之前禁用foreign_key_checks
,然后在以后重新启用
运行两个查询;首先删除引用行(ref_a
,ref_b
),然后删除test
否则,这将是不可能的,这就是外键的用途;确保数据一致性。