Oracle查询表名注释及表字段注释
系统视图-ALL_COL_COMMENTS
ALL_COL_COMMENTS视图存储当前用户可访问的表中字段的注释信息。
名称 | 类型 | 描述 |
---|---|---|
column_name | character varying(64) | 列名 |
table_name | character varying(64) | 表名 |
owner | character varying(64) | 表的所有者 |
comments | text | 注释 |
系统视图-ALL_TAB_COMMENTS
ALL_TAB_COMMENTS视图存储当前用户可访问的所有表和视图的注释信息
名称 | 类型 | 描述 |
---|---|---|
owner | character varying(64) | 表或视图的所有者 |
table_name | character varying(64) | 表或视图的名称 |
comments | text | 注释 |
查询所有表名注释
select * from user_tab_comments;
查询指定用户下某张表的表名注释
select * from user_tab_comments where table_name='TABLE_NAME' and owner = 'OWNER_NAME';
查询所有表字段注释
select * from all_col_comments;
查询指定用户下某张表的表字段注释
select * from all_col_comments where table_name='TABLE_NAME' and owner = 'OWNER_NAME';
也可以从系统视图USER_COL_COMMENTS、USER_TAB_COMMENTS中进行查询
可以将查询结果拼接为可执行sql,方便从一个库中查询所需注释后,直接更新到另一个库中
表字段注释拼接
select 'comment on column '|| table_name ||'.'||column_name||' is '||''''||comments||''';'from all_col_comments where table_name='TABLE_NAME' and owner = 'OWNER_NAME';
表名注释拼接
select 'comment on table '|| table_name ||' is '||''''||comments||''';'from all_tab_comments where table_name='TABLE_NAME' and owner = 'OWNER_NAME';