Skip to content

37.52.table_constraints#

视图table_constraints包含当前用户拥有或对其拥有除SELECT之外的其他权限的所有表约束。

表 37.50.table_constraints

列类型

说明

constraint_catalog sql_identifier

包含约束的数据库的名称(始终为当前数据库)

constraint_schema sql_identifier

包含约束的架构的名称

constraint_name sql_identifier

约束的名称

table_catalog sql_identifier

包含表的数据库的名称(始终为当前数据库)

table_schema sql_identifier

包含表的架构的名称

table_name sql_identifier

表的名称

constraint_type character_data

约束的类型:CHECKFOREIGN KEYPRIMARY KEYUNIQUE

is_deferrable yes_or_no

如果约束可推迟,则为 YES,否则为 NO

initially_deferred yes_or_no

如果约束可推迟且最初推迟,则为 YES,否则为 NO

enforced yes_or_no

适用于 PostgreSQL 中不可用的功能(当前始终为 YES

nulls_distinct yes_or_no

如果约束是唯一约束,则如果约束将空值视为不同或如果它将空值视为不不同,则为 YES,否则对于其他类型的约束为 null。