当前位置: 代码迷 >> Sql Server >> 如果列名是大写字母怎么换成小写的?
  详细解决方案

如果列名是大写字母怎么换成小写的?

热度:51   发布时间:2016-04-27 17:39:04.0
如果列名是大写字母如何换成小写的???
请问如何将大写的列名改成小写的!

------解决方案--------------------
exec sp_configure 'allow update ',1
reconfigure with override

update syscolumns
set name=upper(name)
where id=object_id( '表名 ')

exec sp_configure 'allow update ',1
reconfigure with override