(转)Oracle常用查看表结构命令
获取表名称: 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
汇总select * from all_tables; //查询所有用户下的表信息
select * from all_tab_columns where owner='用户名' and table_name='表名';//表字段信息
select * from all_tab_comments where owner='用户名' and table_name='表名'//表注释信息
select * from all_col_comments where owner='用户名' and table_name='表名';//字段注释信息
表信息、表字段信息、表注释信息、字段注释信息
user_tables、user_tab_columns、user_tab_comments、user_col_comments
all_tables、all_tab_columns 、all_tab_comments、all_col_comments
dba_tables、dba_tab_columns、dba_tab_comments、dba_col_comments
转至:http://www.cnblogs.com/qingsong-do/archive/2011/11/29/2267244.html