oracle中查詢表注釋和字段注釋

2021-10-19 21:17:09 字數 951 閱讀 6186

查詢表注釋:

select

*from user_tab_comments a where a.table_name=

'***'

;

查詢字段注釋:

--查詢字段詳細資訊

select

*from all_tab_columns a where a.table_name=

'***'

;--查詢字段注釋

select

*from user_col_comments where table_name=

'***'

;--查詢字段注釋以及字段型別

select

ut.column_name,

--欄位名稱

uc.comments,

--欄位注釋

ut.data_type--字典型別

from user_tab_columns ut

inner

join user_col_comments uc

on ut.table_name = uc.table_name and ut.column_name = uc.column_name

where ut.table_name=

'***'

order

by ut.column_name

修改字段注釋:

comment

oncolumn 表名.欄位名 is

'注釋內容'

;

查詢表結構修改時間

select created,last_ddl_time from user_objects where object_name=upper(

'表名'

)```

oracle 查詢表字段明細 字段注釋 表注釋

查詢表字段明細 select column name,data type,data length,data precision data scale from all tab columns where table name tablename 字段注釋 select from user col c...

Oracle中檢視所有表和字段以及表注釋 字段注釋

獲取表 select table name from user tables 當前使用者擁有的表select table name from all tables 所有使用者的表select table name from dba tables 包括系統表select table name from...

Oracle中檢視所有表和字段以及表注釋 字段注釋

獲取表 select table name from user tables 當前使用者擁有的表 select table name from all tables 所有使用者的表 select table name from dba tables 包括系統表 select table name f...