PostgreSQL 13.1 中文入门教程 PostgreSQL table_constraints

2024-02-25 开发教程 PostgreSQL 13.1 中文入门教程 匿名 4

视图table_constraints包含属于特定表的所有约束,这些表要满足的条件是:当前用户拥有表或者是当前用户在表上具有某种除SELECT之外的特权。

表 36.46. table_constraints

列类型

描述

constraint_catalogsql_identifier

包含该约束的数据库名称(总是当前数据库)

constraint_schemasql_identifier

包含该约束的模式名称

constraint_namesql_identifier

约束名称

table_catalogsql_identifier

包含该表的数据库名称(总是当前数据库)

table_schemasql_identifier

包含该表的模式名称

table_namesql_identifier

表名称

constraint_typecharacter_data

该约束的类型:CHECKFOREIGN KEYPRIMARY KEYUNIQUE

is_deferrableyes_or_no

如果该约束是可延迟的,则为YES,否则为NO

initially_deferredyes_or_no

如果该约束是可延迟的并且是初始已被延迟,则为YES,否则为NO

enforcedyes_or_no

适用于一种PostgreSQL中不可用的特性(当前总是YES