Oracle 查詢表資訊(字段 備註)

2021-08-16 02:43:48 字數 1967 閱讀 7030

獲取表字段:

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 查詢表資訊(字段 備註)

sql view plain copy 獲取表字段 select from user tab columns where table name 使用者表 order by column name 獲取表注釋 select from user tab comments where table name...

Oracle建立表以及新增字段備註

目錄 一 檢測插入資訊的時候必須制定的字段 二 設定主鍵以及非空 三 建立表 四 給表新增備註 五 查詢備註 六 檢視表備註 七 建立同義詞以及授予增刪改查許可權 1 建立序列 2 查詢序列 3 刪除序列 4 判斷序列是否存在,存在則刪除 5 查詢序列大小寫問題 stat cde varchar2 ...

oracle維護資訊 備註!

檢視oracle 會話詳細資訊 select p.spid srv pid,p.username srv user,p.terminal srv term,p.program srv prog,s.sid,s.serial s.username db user,s.logon time,s.stat...