在SQL Server中,可以使用以下语法来为表结构字段添加注释:
EXEC sys.sp_addextendedproperty
@name = N'MS_Description',
@value = N'Your comment here',
@level0type = N'Schema',
@level0name = 'dbo',
@level1type = N'Table',
@level1name = 'YourTableName',
@level2type = N'Column',
@level2name = 'YourColumnName';
请将上面的语法中的以下部分替换为实际的值:
Your comment here
:要添加的注释内容YourTableName
:表名YourColumnName
:字段名执行上面的语法后,即可为指定的表结构字段添加注释。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: sqlserver replace函数怎么使用