將Oracle中的表構造匯出到word

2021-12-30 12:17:55 字數 924 閱讀 9733

將oracle中的表構造匯出到word

將oracle中的表結構匯出到word

寫開發文件時要用到資料庫開發的表結構,在網上找到了一段sql語句,

經測試完全符合我的需求,不敢獨享,語句如下: 

www.2cto.com  

select * from (

select t1.table_name as "表名稱",

t3.comments as "表說明", 

t1.column_name as "欄位名稱",

t1.data_type as "資料型別",

t1.data_length as "長度",

t1.nullable as "是否為空",

t2.comments as "字段說明",

t1.data_default "預設值"

from cols t1 left join user_col_comments t2

on t1.table_name=t2.table_name and t1.column_name=t2.column_name

left join user_tab_comments t3 

on t1.table_name=t3.table_name 

where not exists ( select t4.object_name from user_objects t4

where t4.object_type='table' 

and t4.temporary='y' 

and t4.object_name=t1.table_name )

order by t1.table_name, t1.column_id

)k where k."表名稱" = 'lbsp_ec_remapp';

查詢完成後,匯出htm格式,在複製黏貼到word,搞定!

將Oracle中的表結構匯出到word

因為需要寫資料庫文件,所以需要把資料庫裡邊的表結構在word中用 列出來,之前一直用powerdesigner,感覺有些麻煩,後來在網上找到了一段sql語句,經測試完全符合我的需求,不敢獨享,語句如下 select t1.table name as 表名稱 t3.comments as 表說明 t1...

將mysql資料匯出到excel表中

title 資料備份 date y m d h i s sep t crlf n conn mysql connect localhost root or die 不能連線資料庫 mysql select db 資料庫名稱 conn mysql query set names utf8 header...

將oracle資料庫表結構匯出到word文件

select 欄位名稱 資料型別 長度 是否為空 字段說明 預設值 from select t1.table name as 表名稱 t3.comments as 表說明 t1.column name as 欄位名稱 t1.data type as 資料型別 t1.data length as 長度...