使用sql語句匯出oracle資料結構資訊

2021-08-13 15:46:01 字數 561 閱讀 2978

匯出資料結構文件,主要包括欄位名稱,字段型別,字段長度,是否為空,備註這幾個資訊。

我們可以從user_tab_columns、user_col_comments表中獲取表字段相關的資訊

select

cl.column_name,

cl.data_type,

cl.data_length,

case

when cl.nullable = 'n'

then

'不可為空'

else

'可為空'

end nullable,

cm.comments

from user_tab_columns cl inner

join user_col_comments cm

on (cl.column_name = cm.column_name and cl.table_name = cm.table_name)

where cl.table_name = 'my_table'

oracle 查詢表資訊(欄位+備註)

從Oracle中匯出SQL語句

b color green size large oracle獲取ddl create table 的幾種常用的方法 size color b 一 可以通過toad plsql develop等第三方工具進行匯出dll操作,用這種辦法的好處在於操作簡單方便,但需要安裝,下面簡單介紹一下用這兩個工具獲...

使用SQL語句匯出表結構

老大寫的sql select tablename o.name,owner user name o.uid tabledescription isnull ptb.value,n fieldid c.colid,fieldname c.name,fieldtype quotename t.name ...

匯入匯出sql語句

expdp 匯出 create directory dpdata1 as d test dump 建立目錄 grant read,write on directory dpdata1 to scott 賦予許可權 select from dba directories 查詢目錄 要在c盤建立test...