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