oracle資料庫查詢字段注釋等

2021-08-22 09:32:59 字數 1244 閱讀 3590

1、給表加注釋

comment on table land.landsellmend is '補辦出讓';

2、檢視表的comment

select * from user_tab_comments where table_name='landsellmend';

3、給字段加注釋

comment on column document.doc.bid is '批號';

4、檢視欄位的comment:

select * from user_col_comments where table_name='landsellmend';

5、檢視欄位的詳細資訊

select a.column_name 欄位名,

a.data_type 資料型別,

a.data_length 長度,

a.data_precision 整數字,

a.data_scale 小數字,

a.nullable 允許空值,

a.data_default 預設值,

b.comments 備註

from  user_tab_columns a,

user_col_comments b

where a.table_name = b.t

Oracle資料庫查詢所有表 欄位和注釋

1.表獲取 對於獲取表資訊,可供選擇的表有 select from user tables 當前使用者的表 select from all tables 所有使用者的表 select from dba tables 包括系統表 select from dba tables where owner t...

oracle通過字段型別查詢字段

有的時候我們需要在oracle中通過欄位名 字段型別 字段長度 字段注釋 表名來查詢具體的字段資訊。比如 昨天同事問我,咱們資料庫裡面有用過blob型別的嗎?我一時也想不起來具體哪個欄位或那張表用了blob型別。於是就用如下語句查詢庫裡面所有字段型別為blob。具體sql如下 select b.co...

sql查詢資料庫注釋(表及表注釋,欄位及字段注釋)

1.要查詢資料庫下所有表名以及表注釋 查詢資料庫 mammothcode 所有表注釋 select table name,table comment from information schema.tables where table schema mammothcode 2.要查詢表字段的注釋 查...