sqlserver修改表结构字段怎么加注释

2117
2024/4/29 19:34:09
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在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函数怎么使用