Oracle数据库中查看所有表和字段以及表注释.字段注释
1、获取表:
select table_name from user_tables; //当前⽤户拥有的表
select table_name from all_tables; //所有⽤户的表
select table_name from dba_tables; //包括系统表
select table_name from dba_tables where owner='⽤户名'
ALL_OBJECTS describes all objects accessible to the current user. 描述当前⽤户有访问权限的所有对象
oracle数据库表结构怎么看DBA_OBJECTS describes all objects in the database. 描述了数据库中的所有对象
USER_OBJECTS describes all objects owned by the current user. 描述了当前⽤户所拥有的所有对象
user_tables:TABLE_NAME,TABLESPACE_NAME,LAST_ANALYZED等
dba_tables:ower,table_name,tablespace_name,last_analyzed等
all_tables:ower,table_name,tablespace_name,last_analyzed等
all_objects:ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等
2、获取表字段:
select * from user_tab_columns where Table_Name='⽤户表';
select * from all_tab_columns where Table_Name='⽤户表';
select * from dba_tab_columns where Table_Name='⽤户表';
3、获取表注释:
user_tab_comments;表注释
select * from user_tab_comments
user_tab_comments:table_name,table_type,comments
相应的还有dba_tab_comments,all_tab_comments,这两个⽐user_tab_comments多了ower列。
4、获取字段注释:
select * from user_col_comments
user_col_comments:table_name,column_name,comments
相应的还有dba_col_comments,all_col_comments,这两个⽐user_col_comments多了ower列。
user_col_comments;表字段注释(列注释)
comment命令添加到数据库中。USER_COL_COMMENTS 视图包含3列:USER_COL_COMMENTS 视图显⽰已经为表中的列输⼊的注释。这些注释通过comment
Table_Name 表名或视图名
Column_Name 列名
Comments 已经为该列输⼊的注释
5、查表字段注释事例:
查看JH表中字段的注释:
select table_name,column_name,comments from user_col_comments where table_name='JH';
TABLE_NAME COLUMN_NAME COMMENTS
-------------------------- --------------------------- -----------------------
JH CONTACT_NAME 联系⼈姓名
本⽂转⾃ling118 51CTO博客,原⽂链接:blog.51cto/meiling/2068902,如需转载请⾃⾏联系原作者
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论