Oracle查看表结构命令详解

所属分类: 数据库 / oracle 阅读数: 2013
收藏 0 赞 0 分享

获取表:

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='用户名' 
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等 

获取表字段:

select * from user_tab_columns where Table_Name='用户表'; 
select * from all_tab_columns where Table_Name='用户表'; 
select * from dba_tab_columns where Table_Name='用户表'; 
user_tab_columns: 
table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等 
all_tab_columns : 
ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等 
dba_tab_columns: 
ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等 

获取表注释:

select * from user_tab_comments 
user_tab_comments:table_name,table_type,comments 
--相应的还有dba_tab_comments,all_tab_comments,这两个比user_tab_comments多了ower列。 

获取字段注释:

select * from user_col_comments 
user_col_comments:table_name,column_name,comments

以上所述是小编给大家介绍的Oracle查看表结构命令,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

更多精彩内容其他人还在看

Oracle轻松取得建表和索引的DDL语句

Oracle轻松取得建表和索引的DDL语句
收藏 0 赞 0 分享

重新编译PLSQL中的无效对象或者指定的对象 的方法

重新编译PLSQL中的无效对象或者指定的对象 的方法
收藏 0 赞 0 分享

在OracleE数据库的字段上建立索引的方法

在OracleE数据库的字段上建立索引的方法
收藏 0 赞 0 分享

oracle下加密存储过程的方法

oracle下加密存储过程的方法
收藏 0 赞 0 分享

浅谈LogMiner的使用方法

浅谈LogMiner的使用方法
收藏 0 赞 0 分享

oracle 下WITH CHECK OPTION用法

oracle 下WITH CHECK OPTION用法
收藏 0 赞 0 分享

在Oracle中向视图中插入数据的方法

在Oracle中向视图中插入数据的方法
收藏 0 赞 0 分享

DBA_2PC_PENDING 介绍

DBA_2PC_PENDING 介绍
收藏 0 赞 0 分享

在Oracle PL/SQL中游标声明中表名动态变化的方法

在Oracle PL/SQL中游标声明中表名动态变化的方法
收藏 0 赞 0 分享

DB2和 Oracle的并发控制(锁)的比较

DB2和 Oracle的并发控制(锁)的比较
收藏 0 赞 0 分享
查看更多