SqlServer 擴充屬性的介紹_MsSql

來源:互聯網
上載者:User

SqlServer協助中對擴充屬性的描述是:
The Extended Properties property sets or retrieves provider-specific connection information that cannot be explicitly described through the property mechanism.
對於擴充屬性有如下操作:

複製代碼 代碼如下:

exec sp_addextendedproperty N'MS_Description', N'欄位描述', N'user', N'dbo',

N'table', N'表名', N'column', N'欄位名'
GO


例如:EXEC sp_addextendedproperty N'MS_Description',N'地址',N'user', dbo,N'table',
複製代碼 代碼如下:

N'a', N'column', a_add
GO--我的表是a,要給欄位a_add加上欄位描述:地址

其他相關:

刪除:

複製代碼 代碼如下:

EXEC sp_dropextendedproperty N'MS_Description',N'user', dbo,N'table', N'表名',

N'column', 欄位名


修改:
複製代碼 代碼如下:

EXEC sp_updateextendedproperty N'MS_Description', N'欄位描述', N'user',

dbo,N'table',N'表名', 'column', 欄位


至於查詢出來,sql server有提供系統函數fn_listextendedproperty ():
複製代碼 代碼如下:

--擷取某一個欄位的描述
SELECT *
FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', '表名', 'column',

default)--其他變數,按照你的要求你照寫即可,只要表名換成你的
where objname = '欄位名'


另外也可以自己查詢系統資料表:
複製代碼 代碼如下:

SELECT o.name AS tableName, c.name AS columnName, p.[value] AS Description
FROM sysproperties p INNER JOIN
sysobjects o ON o.id = p.id INNER JOIN
syscolumns c ON p.id = c.id AND p.smallid = c.colid
WHERE (p.name = 'MS_Description')
ORDER BY o.name

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.