添加表注释
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 '/'
由于下划线在数据库中代表任意单个字符,所以需要转义
单引号由单引号字符转换