2024年9月26日: PostgreSQL 17 发布!
支持的版本:当前 (17) / 16 / 15 / 14 / 13 / 12
开发版本:devel
不支持的版本:11 / 10 / 9.6 / 9.5 / 9.4 / 9.3 / 9.2 / 9.1 / 9.0 / 8.4 / 8.3 / 8.2 / 8.1 / 8.0 / 7.4

35.52. table_constraints #

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

表 35.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

约束的类型:CHECK(包括非空约束)、FOREIGN 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,如果将空值视为不不同,则为 NO,否则对于其他类型的约束为 null。


提交更正

如果您在文档中看到任何不正确的内容、与您对特定功能的体验不符的内容或需要进一步说明的内容,请使用 此表单 报告文档问题。