pg_description 中查询:使用函数 to_regclass select*frompg_descriptionwhereobjoid=to_regclass('schema2023'||'.'||'some_info')::REGCLASS::OID 结果:其中 objsubid = 0 所在行 为 表注释,其它的为 表字段注释;这里的 objoid 的字面值为 222486,为 数据表 对应的 oid(pg_class 表中); 综合查询 --...
PostgreSQL 中文文档,43.17. pg_description,pg_description 表可以给每个数据库对象存储一个可选的描述(注释)。你可以用 COMMENT 命令操作这些描述,并且可以用 psql… O网页链接 û收藏 转发 评论 ñ赞 评论 o p 同时转发到我的微博 按热度 按时间 正在加载,请稍候...ü...
select c.relname 表名,cast(obj_description(relfilenode,'pg_class') as varchar) 名称,a.attname 字段,d.description 字段备注,concat_ws('',t.typname,SUBSTRING(format_type(a.atttypid,a.atttypmod) from '\(.*\)')) as 列类型 from pg_class c,pg_attribute a,pg_type t,pg_description d ...
(select description from pg_description where objoid = a.attrelid and objsubid = a.attnum) as 备注 from pg_class c, pg_attribute a , pg_type t, information_schema.columns as col where c.relname = 'live_camerainfo' and a.attnum>0 and a.attrelid = c.oid and a.atttypid = t....
| postgrespublic | pg_stat_statements_info | view | postgres...postgres=# \d+ List of relationsSchema | Name | Type | Owner | Persistence | Access method | Size | Description---+---+---+---+---+---+---+---public...
【数据库】Postgresql/PG-编写函数实现字段对应加备注 〇、资料链接 一、背景 构建分区表时,删除了表的字段备注信息 1、查询语句 select c.relname表名, cast( obj_description(relfilenode,'pg_class')asvarchar )名称, d.description字段备注, a.attname字段,...
因为所有的数据库、表、索引、配置文件等等都是存储在数据蔟目录下的,即PGDATA。如果你不确定当前环境上面PostgreSQL的数据蔟目录位置,没关系,你仅需要psql登录终端,然后执行SHOW DATA_DIRECTORY;命令即可得到。如下图所示,当前环境的数据蔟目录是:/home/lixiaogang5/DB。
表70.1. PGDATA 的内容` ItemDescription中文简介 PG_VERSION A file containing the major version number of PostgreSQL PostgreSQL主要版本号 base Subdirectory containing per-database subdirectories 包含每个数据库子目录的子目录 current_logfiles File recording the log file(s) currently written to by the log...
postgres 3559 1 0 Aug09 ? 00:00:21 /usr/pgsql-14/bin/postgres -D /var/lib/pgsql/14/data postgres 11628 11533 0 22:04 pts/3 00:00:00 grep --color=auto pg -bash-4.2$ pg_ctl reload server signaled -bash-4.2$ postgres=# select pg_conf_load_time(); ...
pg1 pg1 49 Mar 9 00:54 postgres.shdescription-rw-r--r--. 1 pg1 pg1 278 Mar 9 00:54 psqlrc.sample-rw-r--r--. 1 pg1 pg1 33590 Mar 9 00:54 snowball_create.sql-rw-r--r--. 1 pg1 pg1 35441 Mar 9 00:54 sql_features.txt-rw-r--r--. 1 pg1 pg1 50232 Mar 9 00:...