codecamp

PostgreSQL table_constraints

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

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


PostgreSQL sql_sizing
PostgreSQL table_privileges
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }