如果列名是大写字母如何换成小写的???
请问如何将大写的列名改成小写的!
------解决方案--------------------
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