oracle 檢視表和列描述

2021-06-21 11:27:37 字數 1038 閱讀 5489

檢視備註:

--檢視表的comment 

select   *   from   all_tab_comments   where   table_name= upper(tablename) ;

--檢視列的comment 

select   *   from   all_col_comments   where   table_name=upper(tablename) ;

下面為您介紹的語句用於實現oracle查詢使用者所有表,如果您對oracle查詢方面感興趣的話,不妨一看。

select * from all_tab_comments 

-- 查詢所有使用者的表,檢視等

select * from user_tab_comments   

-- 查詢本使用者的表,檢視等

select * from all_col_comments 

--查詢所有使用者的表的列名和注釋.

select * from user_col_comments 

-- 查詢本使用者的表的列名和注釋

select * from all_tab_columns 

--查詢所有使用者的表的列名等資訊(詳細但是沒有備註).

select * from user_tab_columns 

--查詢本使用者的表的列名等資訊(詳細但是沒有備註).

--一般使用1:

select t.table_name,t.comments from user_tab_comments t

--一般使用2:

select r1, r2, r3, r5

from (select a.table_name r1, a.column_name r2, a.comments r3

from user_col_comments a),

(select t.table_name r4, t.comments r5 from user_tab_comments t)

where r4 = r1

以上就是oracle查詢使用者所有表的語句介紹。

oracle檢視表的描述資訊

描述資訊存在sys使用者下的all col comments all tab comments user col comments user tab comments這四張表中 select t.table name,t.column name,t.comments from all col com...

oracle 檢視表結構和注釋

select t1.table name,t1.column name,t1.data type t1.data length t2.comments from user tab cols t1,user col comments t2 where t1.table name t2.table na...

oracle 檢視表結構和注釋

oracle 檢視表結構和注釋 select t1.table name,t1.column name,t1.data type t1.data length t2.comments from user tab cols t1,user col comments t2 where t1.table ...