Tôi muốn nói rằng bạn có thể sẽ muốn làm điều đó bằng cách sử dụng sp_addextendedproperty proc được lưu trữ.
Microsoft có một số tài liệu tốt về nó.
Hãy thử điều này:
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