codecamp

PostgreSQL pg_description

目录pg_description存储对每一个数据库对象可选的描述(注释)。描述可以通过COMMENT操作,并可使用psql\d命令查看。在 pg_description的初始内容中提供了很多内建系统对象的描述。

参见pg_shdescription,它对在一个数据库集簇中共享的对象的描述提供了相似的功能。

表 51.19. pg_description Columns

列类型

描述

objoid oid (references any OID column)

描述所属对象的OID

classoid oid (references pg_class.oid)

对象所述的系统目录的OID

objsubid int4

对于一个表列上的一个注释,这里是列号(objoidclassoid指表本身)。对所有其他对象类型,此列为0。

description text

作为该对象描述的任意文本



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