SQL中的字母的大小写转换时间:2021-05-03 01:03:28 1.将大写字母改为小写字母 update 表名 set 字段名a= Lower(字段a) 2.将小写字母转化成大写字母update 表名 set 字段名a= upper(字段名a)