首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

在sql2005中,用sql语句怎么更新一列的description属性

2012-03-21 
在sql2005中,用sql语句如何更新一列的description属性在sql2005中,用sql语句如何更新一列的description属

在sql2005中,用sql语句如何更新一列的description属性
在sql2005中,用sql语句如何更新一列的description属性

[解决办法]
SET ANSI_PADDING OFF
GO
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 'Enabled '--你的字段名

热点排行