SQL中的字母的大小写转换

http://blog.csdn.net/dxb601/article/details/52086830

update 表名 set 字段名a= Lower(字段a)  
2.将小写字母转化成大写字母
update 表名 set 字段名a= upper(字段名a) 

原文地址:https://www.cnblogs.com/LuoEast/p/8580500.html