1. 给指定表添加注释。如下:
-- Add comments to the table
comment on table TABLENAME
is '表的注释';
2. 给指定表指定列添加注释。如下:
-- Add comments to the columns
comment on column TABLENAME.COLUMNNAME
is '指定表指定列注释';
1. 给指定表添加注释。如下:
-- Add comments to the table
comment on table TABLENAME
is '表的注释';
2. 给指定表指定列添加注释。如下:
-- Add comments to the columns
comment on column TABLENAME.COLUMNNAME
is '指定表指定列注释';