oracle庫如何查詢表名 欄位名?

2021-08-14 17:22:09 字數 687 閱讀 1288

1)查詢所有表名:

select t.table_name fromuser_tablest; --表名、表空間、行數

select * fromall_tables; //所有使用者的表  

select * from 

dba_tables; //包括系統表

2)查詢所有欄位名:

select * fromuser_tab_columns;//使用者字段

select * fromall_tab_columns;//所有使用者字段

select * fromdba_tab_columns;//所有使用者表,含系統

3)查詢指定表的所欄位名,字段說明

select t.column_name, t.column_name from 

user_tab_comments

select t.column_name fromuser_col_commentst where t.table_name = 'biz_dict_xb';

4)

oracle 查詢表名 欄位名 新增注釋

查詢所有表名 select t.table name from user tables t 查詢所有欄位名 select t.column name from user col comments t 查詢指定表欄位名和注釋 select t.column name t.comments from u...

Oracle 取Oracle 表名 欄位名

檢視oracle 資料庫中本使用者下的所有表 select table name from user tables 檢視oracle 資料庫中所有使用者下的所有表 select user,table name from all tables 檢視oracle 資料庫中本使用者下的所有列 select...

取Oracle 表名 欄位名

檢視oracle 資料庫中本使用者下的所有表 select table name from user tables 檢視oracle 資料庫中所有使用者下的所有表 select user,table name from all tables 檢視oracle 資料庫中本使用者下的所有列 select...