更改表字段的描述 SQL语句实现

使用sp_configure 系统存储过程
使用 sp_configure 时,必须在设置一个配置选项后运行 RECONFIGURE 或者 RECONFIGURE WITH OVERRIDE。RECONFIGURE WITH OVERRIDE 语句通常保留用于需要加倍小心的配置选项(例如,将 allow updates 选项设置为 1 使用户得以更新系统表中的字段)。但是,RECONFIGURE WITH OVERRIDE 可用于所有的配置选项,并且可以用它代替 RECONFIGURE。

例如:

sp_configure 'allow updates', 1
RECONFIGURE WITH OVERRIDE
update sysproperties
set value ='客户编号'
where smallid=
(
select a.colid
from  syscolumns a
where  a.id=object_id('wuxidb_sanno..tDjyutyu')
       and a.name='FdJdyxCD'
)

你可能感兴趣的:(sql语句)