mssqlsqlserver添加表注释和添加列注释的方法分享
转自: http://www.maomao365.com/?p=8919
摘要:
下文讲述使用sql脚本对数据表或数据列添加注释(备注说明)的方法分享,如下所示:
实验环境:sql server 2008 r2
实现思路:
使用系统存储过程sys.sp_addextendedproperty对表和列的相关属性进行设置,达到为数据表或数据列添加注释的目的
--数据表添加注释的方法分享EXEC sys.sp_addextendedproperty @name= N"MS_Description",
@value= N"数据表注释说明", @level0type= N"SCHEMA",
@level0name= N"dbo", @level1type= N"TABLE",
@level1name= N"数据表名称"
--数据字段添加注释的方法分享
EXEC sys.sp_addextendedproperty @name= N"MS_Description",
@value= N"数据列注释说明", @level0type= N"SCHEMA",
@level0name= N"dbo", @level1type= N"TABLE",
@level1name= N"数据表名称", @level2type= N"COLUMN",
@level2name= N"字段名"
以上是 mssqlsqlserver添加表注释和添加列注释的方法分享 的全部内容, 来源链接: utcz.com/z/531388.html