[求助] 批量修改字段名称
我的数据库名称是 ss里面有30多张表,都是以BL_开头的,里面都只有一个字段 :名称
我想把这些表的列名全改成 name
我该怎么办呀,?????
如何写一个批处理来完成????
exec sp_configure 'allow update',1
reconfigure with override
update syscolumns set name='name' from sysobjects where syscolumns.id in (select id from sysobjects where name like 'bl_%')
exec sp_configure 'allow update',0
reconfigure with override