PostgreSQLでテーブルにコメントを追加する

2021年12月1日

環境
PostgreSQL 9.6.5

コメントの追加方法
1.データベースにコメントを追加
comment on database userdb is 'ユーザーデータベース’;

2.テーブルにコメントを追加
comment on table user_tbl is 'ユーザーテーブル’;

3.シーケンスにコメントを追加
comment on sequence user_seq is 'サンプル’;

4.カラムにコメントを追加

comment on column user.user_id is 'ユーザーID';
comment on column user.user_name is 'ユーザーの名前';
comment on column user.user_category is 'ユーザーのカテゴリ';
comment on column user.del_flg is '削除フラグ';

5.コメントを削除
comment on column user.user_id is null;

PostgreSQL

Posted by arkgame