sql匯出資料庫表結構Excel

2022-02-16 00:30:00 字數 1369 閱讀 8695

use sbase--庫名

select

表名 = case when a.colorder=1 then d.name else '' end,

表說明 = case when a.colorder=1 then isnull(f.value,'') else '' end,

字段序號 = a.colorder,

欄位名 = a.name,

字段說明 = isnull(g.[value],''),

標識 = case when columnproperty( a.id,a.name,'isidentity')=1 then '√'else '' end,

主鍵 = case when exists(select 1 from sysobjects where xtype='pk' and parent_obj=a.id and name in (

select name from sysindexes where indid in( select indid from sysindexkeys where id = a.id and colid=a.colid))) then '√' else '' end,

型別 = b.name,

占用位元組數 = a.length,

長度 = columnproperty(a.id,a.name,'precision'),

小數字數 = isnull(columnproperty(a.id,a.name,'scale'),0),

允許空 = case when a.isnullable=1 then '√'else '' end,

預設值 = isnull(e.text,'')

from

syscolumns a

left join

systypes b

ona.xusertype=b.xusertype

inner join

sysobjects d

ona.id=d.id and d.xtype='u' and d.name<>'dtproperties'

left join

syscomments e

ona.cdefault=e.id

left join

sys.extended_properties g

ona.id=g.major_id and a.colid=g.minor_id

left join

sys.extended_properties f

ond.id=f.major_id and f.minor_id=0

where d.name='users' --如果只查詢指定表,加上此條件

order by

a.id,a.colorder

oracle資料庫表結構匯出

今天有同事打 要求要把oracle庫里的一張表的定義匯出個sql檔案,當時的第一反應就是要教他用exp imp來獲得表結構定義檔案,在 裡面說了半天還是沒能教會他,只好跑了一趟機房。路上就在想,oracle真是討厭,為什麼不在企業管理器裡直接加上個表結構匯出的選項,還要害我這麼跑一趟,真是 問了下要...

SQLServer 匯出資料庫表結構

sql語句如下 select case when a.colorder 1 then d.name else end 表名,a.colorder 字段序號,a.name 欄位名,case when columnproperty a.id,a.name,isidentity 1 then else e...

mysql資料庫表結構匯出

mysql 資料庫表結構匯出 命令列下具體用法如下 mysqldump u使用者名稱 p密碼 d 資料庫名 表名 指令碼名 匯出整個資料庫結構和資料 mysqldump h localhost uroot p123456 database dump.sql 匯出單個資料表結構和資料 mysqldum...