标签:desc target bsp 脚本 span 注释 ble end www
转自: 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‘字段名‘
mssql sqlserver 添加表注释和添加列注释的方法分享
标签:desc target bsp 脚本 span 注释 ble end www
原文地址:https://www.cnblogs.com/lairui1232000/p/11874338.html