PostgreSQL中的COMMENT用法说明

postgresql附带了一个命令 – comment 。如果想要记录数据库中的内容,这个命令很有用。本文将介绍如何使用此命令。

随着数据库的不断发展和数据关系变得越来越复杂,跟踪数据库中添加的所有内容会变得非常困难。要记录数据的组织方式以及可能随时间添加或更改的组件,有必要添加某种文档。

例如,文档可以写在外部文件中,但这会产生一种问题,他们很快就会变为过时的文件。postgresql有一个解决这个问题的方法:comment命令。使用它可以向各种数据库对象添加注释,例如在需要时更新的列,索引,表和函数。

查看数据和添加注释

postgresql的psql交互式shell包含许多强大的命令来查看和操作数据。\d命令会显示所有可见表,视图,物化视图,序列和外部表的列表。还有几种\d命令的组合可用于指定是否要查看索引,映射,约束等。结合+(例如\d+),该命令将为您提供对象的扩展视图,包含一个描述列,这是文档或comment编写的位置。

comment命令是我们将数据描述添加到数据库对象的方法。不要将comment与\ * * \或 sql中的 — 相混淆,因为它们是在sql文件中编写的,在数据​​库中不可见。另一方面,comment不是标准sql,而是postgresql独有的。

有很多数据库对象可供我们使用comment命令。其中最常见的是表,索引和列。但是,必须是对象的所有者或管理员才能使用comment。

运行\d+以显示表及其描述,例如:

postgres=# \d+
                 list of relations
 schema |    name    |   type   | owner  |  size  | description 
--------+------------------+---------------+----------+------------+---------------
public | commenttest   | table     | postgres | 8192 bytes |

由于commenttest是一个刚刚创建的新表,因此description列为空。可以通过以下命令添加注释:

postgres=# comment on table commenttest is 'a table of students in different departments'; 
comment

现在再次运行\d+,可以看到描述列填充了注释。

postgres=# \d+
                 list of relations
 schema |    name    |   type   | owner  |  size  | description 
--------+------------------+---------------+----------+------------+---------------
public | commenttest   | table     | postgres | 8192 bytes | a table of students in different departments

这是向表中添加描述信息的步骤。 接着,我们需要考虑如何向表的列中添加描述。

要查看表中每个列的描述列,可以运行类似以下命令:

postgres=# \d+ commenttest
                   table "public.commenttest"
   column   | type  | collation | nullable | default | storage | stats target | description 
-----------------+---------+-----------+----------+---------+----------+--------------+-------------
 student_id   | integer |      |     |     | plain  |       | 
 student_name  | text  |      |     |     | extended |       | 
 student_major  | text  |      |     |     | extended |       | 
 department_id  | integer |      |     |     | plain  |       | 
 department_name | text  |      |     |     | extended |       | 
 nationality   | text  |      |     |     | extended |       |

为每列添加描述与我们在表中添加一个列的方式类似。例如:

postgres=# comment on column commenttest.student_id is 'id of the student';
comment
postgres=# comment on column commenttest.student_name is 'name of the student';
comment
postgres=# comment on column commenttest.student_major is 'major of the student';
comment
postgres=# comment on column commenttest.department_id is 'id of the department';
comment
postgres=# comment on column commenttest.department_name is 'name of the department';
comment
postgres=# comment on column commenttest.nationality is 'nationality of the student';
comment

添加描述后,再次查看表的描述列信息:

postgres=# \d+ commenttest
                      table "public.commenttest"
   column   | type  | collation | nullable | default | storage | stats target |    description     
-----------------+---------+-----------+----------+---------+----------+--------------+----------------------------
 student_id   | integer |      |     |     | plain  |       | id of the student
 student_name  | text  |      |     |     | extended |       | name of the student
 student_major  | text  |      |     |     | extended |       | major of the student
 department_id  | integer |      |     |     | plain  |       | id of the department
 department_name | text  |      |     |     | extended |       | name of the department
 nationality   | text  |      |     |     | extended |       | nationality of the student

可以看到描述列已经添加好相应注释。这样添加过注释之后,名字复杂且难懂的列名就能让最终用户比较容易理解且不会产生歧义。

我们也可以使用类似的方式向索引中添加描述,这样在数据库使用过程中,可以防止由于索引数量的增加而导致的混淆和歧义问题。

而且如果使用pg_dump迁移postgresql数据库,则使用comment进行的任何注释都会存储在转储文件中。

补充:给postgresql数据库的表和列添加注释(comment)

postgresql 数据库国内用的人并不是很多,而一些老项目采用了这个数据库。维护起来特别麻烦,因为国内用的人比较少,相关资料也很少。

另外还有一些函数,postgresql 也没有对应的提供。还有对于表分区,低版本的 postgresql 数据库根本都没有这个功能,不支持。需要自己自动的创建表进行分区。

总之 postgresql 数据库用起来实在是太过麻烦,本文总结了一些给 postgresql 数据库的表和列添加注释的方法,方便已经采用 postgresql 数据库而不得不用的程序员。

首先说给表添加注释:

comment on table xttblog is '业余草';

其中 xttblog 是表名,添加的注释是“业余草”。

给列添加注释的方法如下:

create table xttblog(id int not null, url_id int); 
comment on column xttblog.id is '主键id,自增';

注意创建表的时候,不能再列后面加 comment 。添加后执行会报错,因为这是 mysql,oracle的用法,不是 postgresql 的用法。

下面再说说如何查询表中的注释。sql 语句如下:

select description from pg_descriptionjoin pg_class on pg_description.objoid = pg_class.oid where relname = 'xttblog'

其中以 pg_ 开头的表都是 postgresql 数据库的系统表。系统表中存储着很多与表和配置相关的信息。

postgresql 获取数据表的注释信息和表中字段的注释信息和上面的 sql 类似。

和表相关的信息都在 pg_description 这个表中,查 pg_description 这个系统表,里面有存表和字段的备注。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。如有错误或未考虑完全的地方,望不吝赐教。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐