--为表jcms_module_article中字段Id增加描述信息:
EXEC sp_addextendedproperty N'MS_Description','自动编号',N'user',N'dbo',N'table',N'jcms_module_article',N'column',N'Id'
或者
exec sp_addextendedproperty
@name=N'MS_Description', @value='自动编号',
@level0type=N'user',@level0name=N'dbo',
@level1type=N'table',@level1name='jcms_module_article',
@level2type=N'column',@level2name='Id'
--更新表jcms_module_article中字段Id的描述属性:
EXEC sp_updateextendedproperty N'MS_Description','自动编号2',N'user',N'dbo',N'table',N'jcms_module_article',N'column',N'Id'
--删除表jcms_module_article中字段Id的描述属性:
EXEC sp_dropextendedproperty N'MS_Description',N'user',N'dbo',N'table',N'jcms_module_article',N'column',N'Id'
[责任编辑:jumbot]