codecamp

PostgreSQL check_constraint_routine_usage

视图check_constraint_routine_usage标识由检查约束使用的例程(函数和过程)。只有那些例程显示为当前启用的角色所拥有。

表 36.6. check_constraint_routine_usage

列类型

描述

constraint_catalog sql_identifier

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

constraint_schema sql_identifier

包含约束的模式的名称

constraint_name sql_identifier

约束的名称

specific_catalog sql_identifier

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

specific_schema sql_identifier

包含函数的模式的名称

specific_name sql_identifier

函数的特定名称。 详请参见 第 36.41 节


PostgreSQL character_sets
PostgreSQL check_constraints
温馨提示
下载编程狮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; }