1、有些字段可能存在于许多张表中,但有些表中又可能没有注释,方法1 可以直接查询出该字段的注释,避免了再去表中查询该字段注释。
2、COLUMN_NAME 一定要大写

方法1、不知道字段所在表

select * from all_col_comments where column_name='COLUMN_NAME' [where comments is not null];
select * from user_col_comments where column_name='COLUMN_NAME' [where comments is not null];

-- all_col_comments 查出来的结果 >= user_col_comments 查出来的结果。

方法2、已知字段所在表

select * from dba_tab_columns where table_name='TABLE_NAME';
select * from user_tab_columns where table_name='TABLE_NAME';
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐