mssql 語句 檢視資料結構指令碼

2021-04-13 00:14:22 字數 1299 閱讀 2468

select

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

a.colorder n'字段序號',

a.name n'欄位名',

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

(case when (select count(*)

from sysobjects

where (name in

(select name

from sysindexes

where (id = a.id) and (indid in

(select indid

from sysindexkeys

where (id = a.id) and (colid in

(select colid

from syscolumns

where (id = a.id) and (name = a.name))))))) and

(xtype = 'pk'))>0 then '√' else '' end) n'主鍵',

b.name n'型別',

a.length n'占用位元組數',

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

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

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

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

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

--into ##tx

from  syscolumns  a left join systypes b

on  a.xtype=b.xusertype

inner join sysobjects d

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

left join syscomments e

on a.cdefault=e.id

left join sysproperties g

on a.id=g.id and a.colid = g.**allid 

order by object_name(a.id),a.colorder  

Sql語句檢視表結構

1 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,標識 case whe...

MSSQL 檢視資料庫編碼格式

閱文時長 0.67分鐘 字數統計 837.6字元 主要內容 1 引言 背景 2 宣告與參考資料 mssql 檢視資料庫編碼格式 編寫人 scschero 編寫時間 2021 3 11 pm11 59 文章型別 系列 完成度 待完善 座右銘 每乙個偉大的事業,都有乙個微不足道的開始。首先闢謠網上盛傳的...

如何檢視後端介面資料結構

如何檢視後端介面資料結構?拿echarts來說,首先,使用ajax向後端請求資料,各個值拼接成乙個字串返回 tooltip 1 使用 alert json.stringify param 的時候,彈出一些列資料 2 使用 console.log param 的時候,列印在控制台的資料。選擇需要的字段...