admin

添加列说明

sql

有谁知道如何通过运行脚本向SQL Server列添加描述?我知道使用SQL Server Management Studio创建列时可以添加描述。

我该如何编写脚本,以便当我的SQL脚本创建该列时,还添加了对该列的描述?


阅读 177

收藏
2021-05-10

共1个答案

admin

我会说您可能想使用sp_addextendedproperty存储的proc来做到这一点。

Microsoft有一些很好的文档。

试试这个:

EXEC sp_addextendedproperty 
    @name = N'MS_Description', @value = 'Hey, here is my description!',
    @level0type = N'Schema',   @level0name = 'yourschema',
    @level1type = N'Table',    @level1name = 'YourTable',
    @level2type = N'Column',   @level2name = 'yourColumn';
GO
2021-05-10