码迷,mamicode.com
首页 > 数据库 > 详细

sqlServer区分大小写查询

时间:2018-05-17 11:39:41      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:长度   sele   nba   def   where   ble   区分   sel   tab   

sql server默认不区分大小写查询,但是有的时候部分查询语句却需要区分大小写查询,这个时候就需要进行一些特殊处理。区分大小写主要分两种方法。

转二进制判断

select * from table where cast(name as varbinary)=cast(‘LiYuanBa‘ as varbinary)               --短字符串
select * from table where cast(name as varbinary)=cast(‘LiYuanBaABCEDEF……‘ as varbinary(500)) --长字符串

注意

varbinary默认长度为30,如果长度不够不保留超出的部分,最终导致判断错误!

通过collate Chinese_PRC_CS_AS

select * from table where name collate Chinese_PRC_CS_AS=‘LiYuanBa‘        --精确
select * from table where name collate Chinese_PRC_CS_AS like ‘LiYuanBa%‘  --模糊

优点
不需要考虑字符串长度问题,建议使用。

sqlServer区分大小写查询

标签:长度   sele   nba   def   where   ble   区分   sel   tab   

原文地址:https://www.cnblogs.com/LFBlog/p/9049137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!