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.    描述当前用户有访问权限的所有对象 
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、获取表字段:

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列。

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;表字段注释(列注释)
USER_COL_COMMENTS 视图显示已经为表中的列输入的注释。这些注释通过comment命令添加到数据库中。USER_COL_COMMENTS 视图包含3 列:

Table_Name 表名或视图名

Column_Name 列名

Comments 已经为该列输入的注释

5、查表字段注释事例:

查看JH表中字段的注释:
select table_name,column_name,comments from user_col_comments where table_name=‘JH’;

  • 5
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

何浩翔

如果对你多帮助,请支持。感谢!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值