ORACLE操作 查詢表

2021-07-28 02:23:35 字數 1987 閱讀 8200

獲取表字段:

select * 

from user_tab_columns 

where table_name=』使用者表』 

order by column_name

獲取表注釋:

select * 

from user_tab_comments 

where table_name=』使用者表』

order by table_name

獲取字段注釋:

select * 

from user_col_comments 

where table_name=』使用者表』

order by column_name

/* 獲取表:*/

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=』zfxfzb』

/* 

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

相應的還有dba_col_comments,all_col_comments,這兩個比user_col_comments多了ower列。 

*/

Oracle 查詢庫表操作

查詢所有表名 select t.table name from user tables t 查詢所有欄位名 select t.column name from user col comments t 查詢指定表的所有欄位名 select t.column name from user col com...

oracle 查詢表的操作記錄

1,檢視某一時間的執行過的所有sql select t.sql text,t.first load time from v sqlarea t where t.first load time like 2019 01 28 order by t.first load time desc 2019 0...

oracle 查詢表的操作記錄

1.查詢操作表的歷史紀錄 select from v sqlarea a where a.sql text like 表名稱 order by first load time desc 2.從上面的記錄中找到update語句對應的sql id select from v sqltext a,v sq...