📜  更改约束 postgres - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:03.299000             🧑  作者: Mango

代码示例1
/* Drop your constraint */
alter table yourtable drop constraint constraint_name;

/* Create new constraint */
alter table yourtable add constraint "constraint_name" FOREIGN KEY (some_id) REFERENCES yourtable(some_id) on delete cascade;