codecamp

PostgreSQL pg_sequence

目录pg_sequence包含有关序列的信息。一些序列的信息(例如名称和方案)放在pg_class中。

表 51.45. pg_sequence Columns

列类型

描述

seqrelid oid (references pg_class.oid)

这个序列的pg_class项的OID

seqtypid oid (references pg_type.oid)

序列的数据类型

seqstart int8

序列的起始值

seqincrement int8

序列的增量值

seqmax int8

序列的最大值

seqmin int8

序列的最小值

seqcache int8

序列的缓冲尺寸

seqcycle bool

序列是否循环



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