添加表注釋
comment on table 表名 is '表注釋'
添加字段注釋
comment on column 表名.字段名 is '字段名注釋'

查詢表注釋
select * from user_tab_comments
查詢字段注釋
select * from user_col_comments

查詢以TAB_開頭的表的注釋
where table_name like 'TAB/_%' escape '/'
由于下劃線在數據庫中代表任意單個字符,所以需要轉義
單引號由單引號字符轉換