--sql 大小写查询
select * from 表 where 字段 collate Chinese_PRC_CS_AS='xx'
--替换 小写xx 改为大写XX
update 表 set 字段=REPLACE (字段,'xx','XX') where 字段 collate Chinese_PRC_CS_AS like '%xx%'