溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SQL Server中Table字典數(shù)據(jù)查詢SQL的示例分析

發(fā)布時間:2021-09-02 10:28:14 來源:億速云 閱讀:191 作者:小新 欄目:數(shù)據(jù)庫

這篇文章主要介紹SQL Server中Table字典數(shù)據(jù)查詢SQL的示例分析,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

前言

在數(shù)據(jù)庫系統(tǒng)原理與設(shè)計(第3版)教科書中這樣寫道:

數(shù)據(jù)庫包含4類數(shù)據(jù):

1.用戶數(shù)據(jù)

2.元數(shù)據(jù)

3.索引

4.應(yīng)用元數(shù)據(jù)

其中,元數(shù)據(jù)也叫數(shù)據(jù)字典,定義如下:

下面這篇文章就來給大家分享一個關(guān)于查詢SQL Server Table 結(jié)構(gòu)的SQL 語句。

T-SQL 如下:

SELECT (case when a.colorder=1 then d.name else '' end) 表名,
a.colorder 字段序號,a.name 字段名,
(case when a.colorder=1 then isnull(f.value,'') else '' end) 表說明, 
(case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '1'else '0' end)標(biāo)識,
(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 '1' else '0' end) 主鍵,b.name 類型,a.length 占用字節(jié)數(shù),
COLUMNPROPERTY(a.id,a.name,'PRECISION') as 長度,
isnull(COLUMNPROPERTY(a.id,a.name,'Scale'),0) as 小數(shù)位數(shù),(case when
a.isnullable=1 then '1'else '0' end) 允許空,
isnull(e.text,'') 默認(rèn)值,isnull(g.[value], ' ') AS [說明]
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 sys.extended_properties g on a.id=g.major_id AND a.colid=g.minor_id
left join sys.extended_properties f on d.id=f.major_id and f.minor_id=0
--where b.name is not null
WHERE d.name='DBA_Server' --如果只查詢指定表,加上此條件,此案例為表DBA_Server
order by a.id,a.colorder

查詢出的結(jié)果如下:

SQL Server中Table字典數(shù)據(jù)查詢SQL的示例分析

以上是“SQL Server中Table字典數(shù)據(jù)查詢SQL的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI