SQL SERVER 设置区别大小写
表格中字段设置大小写:
--查询时修改 select * from info where name collate Chinese_PRC_CS_AS_WS = 'lily'; --或者修改表对大小写敏感 --alter table info alter column name char(10) collate Chinese_PRC_CS_AS ;
创建数据库时将数据库设置为对大小写敏感:
create database mytest; alter database mytest collate Chinese_PRC_CS_AS; use mytest; create table myinfo(name char(10)); insert into myinfo values('Bob'),('bob'); select * from myinfo where name = 'Bob';
解释:
前半部分:指UNICODE字符集,Chinese_PRC_指针对大陆简体字UNICODE的排序规则
排序规则的后半部份即后缀含义:
_BIN 二进制排序
_CI(CS) 是否区分大小写,CI不区分,CS区分
_AI(AS) 是否区分重音,AI不区分,AS区分
_KI(KS) 是否区分假名类型,KI不区分,KS区分
_WI(WS) 是否区分宽度WI不区分,WS区分