首页
关于我们
服务项目
软件定制
数据采集
网站APP开发
数据维护
案例展示
新闻动态
资源下载
产品列表
联系我们
131 2552 0620
在线咨询
QQ咨询
服务热线
服务热线:13125520620
TOP
数据库学习:查询区分大小写-数据库
发布时间:2011-11-12
浏览:5308
在sql2000和7.0的查询语句中,区分大写的查询方法
--sql2000,就用下面的方法.
--就是在字段名后加 collate Chinese_PRC_CS_AS_WS
--区分大小写、全半角字符的方法
--测试数据
create table 表(fd varchar(10))
insert into 表
select aa='aa'
union all select 'Aa'
union all select 'AA' --全角A
union all select 'A,A' --全角A,半角,
union all select 'A,A' --全角A,全角,
go
--查询
--1.查大写字母
select * from 表
where fd collate Chinese_PRC_CS_AS_WS like '%A%'
--就是在字段名后加 collate Chinese_PRC_CS_AS_WS
--2.查全角
select * from 表
where fd collate Chinese_PRC_CS_AS_WS like '%A%'
--3.查半角
select * from 表
where fd collate Chinese_PRC_CS_AS_WS like '%,%'
go
--删除测试数据
drop table 表
/*--测试结果
1.查询大写字母的结果
fd
----------
Aa
2.查询全角字符的结果
fd
----------
AA
A,A
A,A
3.查询半角字符的结果
fd
----------
A,A
(所影响的行数为 1 行)
--*/
============================
--sql7.0,就用下面的方法.
--如果是全部比较
--下面是测试
select * from(
select fd='a'
union all select 'A'
) a
where cast(fd as varbinary(8000))=cast('A' as varbinary(8000))
/*--测试结果
fd
----
A
(所影响的行数为 1 行)
--*/
--如果是部分匹配,就用charindex:
--下面是测试
select * from(
select fd='a'
union all select 'A'
union all select 'aAaa'
union all select 'aaaa'
union all select 'cccA'
) a
where charindex(cast('A' as varbinary(8000)),cast(fd as varbinary(8000)))>0
/*--测试结果
fd
----
A
aAaa
cccA
(所影响的行数为 3 行)
--*/
来源:博远电子(软件定制),如涉及版权问题请与我们联系。
TAG
软件定制,软件开发,瀚森HANSEN,辽宁,沈阳,抚顺
0
该内容对我有帮助
上一篇:
SQL高手篇:精妙SQL语句介绍-数据库
下一篇:
SQL注入网站入侵实例-数据库
返回列表