程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> oracle查詢用戶所有表的語句

oracle查詢用戶所有表的語句

編輯:Oracle數據庫基礎

下面為您介紹的語句用於實現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查詢用戶所有表的語句介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved