也许我在这里遗漏了一些东西:
CREATE TABLE public.example_table (
id integer UNIQUE
);
CREATE TABLE public.foreign_table (
id integer,
example_table_id integer,
CONSTRAINT fk_example_table_id
FOREIGN KEY (example_table_id)
REFERENCES public.example_table (id)
ON DELETE SET NULL
);
INSERT INTO public.example_table (id) VALUES
(1);
INSERT INTO public.foreign_table (id, example_table_id) VALUES
(1, 1),
(2, null);
如果我运行TRUNCATE CASCADE
,两个表都会被擦除,这不是我所期望的。
TRUNCATE example_table CASCADE;
SELECT COUNT(*) FROM public.foreign_table;
0
我期望发生的事情foreign_table
会改变为:
(1, null)
(2, null)
我不明白 SET NULL 应该完成什么吗?
有没有办法使用 TRUNCATE CASCADE 而不从另一个表中删除它?我在可以调用的地方使用 Laravel,Model::truncate();
它会自动截断表并重置我的索引,我希望我可以调用它example_table
并让它重置所有行,foreign_table
而null
不是仅仅删除整个表。
谢谢你的帮助。
如果我正确理解文档:
https://www.postgresql.org/docs/current/sql-truncate.html
TRUNCATE CASCADE 会截断与公共表有外键关系的每个表,无论为外键指定什么操作。例子:
是否有特别的事情阻止您:
?