标签: postgresql foreign-keys table-relationships
在PostgreSQL中UPDATE / DELETE事件上用父表引用外键的子表上的默认操作是什么?
UPDATE / DELETE
列出的可能内容如下:
NO ACTION | RESTRICT | CASCADE | SET NULL | SET DEFAULT
我想它可能是NO ACTION,但官方文档没有在events paragraph of the SELECT statement specs中指明它(不幸的是,段落的深层链接不可引用)。
NO ACTION
答案 0 :(得分:2)
它位于REFERENCES子句
REFERENCES
Quote from the manual
NO ACTION ....这是默认操作。
....这是默认操作。