SQL Server 排序规则(摘)

3Sql Server数据库,在跨库多表连接查询时,若两数据库默认字符集不同,系统就会返回这样的错误:“无法解决equal to操作的排序规则冲突”

一、错误分析:
这个错误是因为排序规则不一致造成的,比如:
create table #t1(
name varchar(20) collate Albanian_CI_AI_WS,  
value int)
create table #t2(
name varchar(20) collate Chinese_PRC_CI_AI_WS,    
value int)
select * from #t1 A inner join #t2 B on A.name=B.name
解决这个问题语句可以这样写:
select * from #t1 A inner join #t2 B on A.name=B.name collate Chinese_PRC_CI_AI_WS  

二、排序规则简介:
MS是这样描述的:“在Microsoft SQL Server 2000中,字符串的物理存储由排序规则控制。排序规则指定表示每个字符的位模式以及存储和比较字符所使用的规则。”
在查询分析器内执行下面语句,可以得到Sql Server支持的所有排序规则
select * from ::fn_helpcollations()
排序规则名称由两部分构成,前半部份是指本排序规则支持的字符集。
如:Chinese_PRC_CS_AI_WS
前半部分:指UNICODE字符集,Chinese_PRC_指针对大陆简体字UNICODE的排序规则。
排序规则的后半部分含义:
    _BIN二进制排序
    _CI(CS)是否区分大小写,CI不区分,CS区分
    _AI(AS)是否区分重音,AI不区分,AS区分
    _KI(KS)是否区分假名类型,KI不区分,KS区分
    _WI(WS)是否区分宽度,WI不区分,WS区分
区分大小写:是否想让比较将大写字母和小写字母视为不等
区分重音:是否想让比较将重音和非重音字母视为不等
区分假名:是否想让比较将片假名和平假名日语音节视为不等
区分宽度:是否想让比较将半角字符和全角字符视为不等

三、排序规则的应用:
例1:让表name列的内容按拼音排序
create table #t(id int,name varchar(20))
insert #t select 1,''
union all select 2,''
union all select 3,''
union all select 4,''select * from #t order by name collate Chinese_PRC_CS_AS_KS_WS   

droptable #t
/*结果:
id          name                 
----------- -------------------- 
4           阿
2           国
3           人
1           中
*/
例2:让表NAME列的内容按姓氏笔划排序
create table #t(id int,name varchar(20))
insert #t select 1,''
union all select 2,''
union all select 3,''
union all select 4,''
union all select 5,''
select * from #t order by name collate Chinese_PRC_Stroke_CS_AS_KS_WS  
drop table #t 

/*结果:
id          name                 
----------- -------------------- 
4           一
2           乙
3           二
5           十
1           三
*/

四、在实践中排序规则应用的扩展
例1:用排序规则的特性计算汉字笔划
要计算汉字笔划,Windows多国汉字,Unicode目前收录汉字共20902个。简体GBK码汉字Unicode值从19968开始。
首先,我们先用SqlServer方法得到所有汉字,用Sql语句就可以得到:
select top 20902 code=identity(int,19968,1into #t from syscolumns a,syscolumns b
select code,nchar(code) as CNWord from #t

然后,我们用select语句,让它按笔划排序:
select code,nchar(code) as CNWord from #t order by nchar(code) collate Chinese_PRC_Stroke_CS_AS_KS_WS,code
从上面的结果可以看出,一笔的汉字,code是从19968到20101,从小到大排,但到了二笔汉字的第一个字“丁”,code为19969,就不按顺序而重新开始了。有了这个结果,就可以轻松用Sql语句得到每种笔划汉字归类的第一个或最后一个汉字。
下面用Sql语句得到最后一个汉字:
create table #t1(id int identity,code int,cnword nvarchar(2))
insert #t1(code,cnword)
select code,nchar(code) as CNWord  from #t order by nchar(code) collate Chinese_PRC_Stroke_CS_AS_KS_WS,code
select A.cnword from #t1 A left join #t1 B on A.id=B.id-1 and A.code<B.code where B.code is null order by A.id
得到36个汉字,每个汉字都是每种笔划数按Chinese_PRC_Stroke_CS_AS_KS_WS排序规则排序后的最后一个汉字:
亅阝马风龙齐龟齿鸩龀龛龂龆龈龊龍龠龎龐龑龡龢龝齹龣龥齈龞麷鸞麣龖龗齾齉龘
上面可以看出,“亅”是所有一笔汉字排序后的最后一个字,“阝”是所有二笔汉字排序后的最后一个字……等等。但同时也发现,从第33个汉字“龗(33笔)”后面的笔划有些乱,不正确。可以用手工加上比“龗”笔划多的汉字:齾35笔、齉36笔、靐39笔、龘64笔

建汉字笔划表(tab_hzbh):
create table tab_hzbh(id int identity,cnword nchar(1))
--先插入前33个汉字
insert tab_hzbh select top 33 A.cnword from #t1 A left join #t1 B on A.id=B.id-1 and A.code<B.code where B.code is null order by A.id

--再加最后四个汉字
set identity_insert tab_hzbh on

insert tab_hzbh(id,cnword) select 35,N'' union all select 36,N'' union all select 39,N'' union all select 64,N''
set identity_insert tab_hzbh off
到此为止,我们就可以得到结果了。比如我们想得到汉字“国”的笔划:
declare @a nchar(1)
set @a=''
select top 1 id from  tab_hzbh where cnword>=@a collate Chinese_PRC_Stroke_CS_AS_KS_WS order by id
(结果:汉字“国”笔划数为8)
有了上面的准备,可以写这样一个函数,用来计算字符串中汉字的笔划数:
create function fun_getbh(@str nvarchar(4000))
returns int
as
begin
    declare @word nchar(1),@n int
    set @n=0
    while len(@str)>0
    begin
        set @word=left(@str,1)
        --如果非汉字,笔划当0计
        set @n=@n+(case when unicode(@wordbetween 19968 and 19968+20901

        then (select top 1 id from (
        select 1 as id,N'' as word 
        union all select 2,N'' 
        union all select 3,N'' 
        union all select 4,N'' 
        union all select 5,N'' 
        union all select 6,N'' 
        union all select 7,N'' 
        union all select 8,N'齿' 
        union all select 9,N'' 
        union all select 10,N'' 
        union all select 11,N'' 
        union all select 12,N'' 
        union all select 13,N'' 
        union all select 14,N'' 
        union all select 15,N'' 
        union all select 16,N'' 
        union all select 17,N'' 
        union all select 18,N'' 
        union all select 19,N'' 
        union all select 20,N'' 
        union all select 21,N'' 
        union all select 22,N'' 
        union all select 23,N'' 
        union all select 24,N'' 
        union all select 25,N'' 
        union all select 26,N'' 
        union all select 27,N'' 
        union all select 28,N'' 
        union all select 29,N'' 
        union all select 30,N'' 
        union all select 31,N'' 
        union all select 32,N'' 
        union all select 33,N'' 
        union all select 35,N'' 
        union all select 36,N'' 
        union all select 39,N'' 
        union all select 64,N'' 
        ) T 
        where word>=@word collate Chinese_PRC_Stroke_CS_AS_KS_WS
        order by id ASCelse 0 end)
        set @str=right(@str,len(@str)-1)
    end
    return @n
end

函数调用实例:

select dbo.fun_getbh('中华人民共和国'),dbo.fun_getbh('中華人民共和國')
执行结果:笔划总数分别为36和46。
例2:用排序规则得到汉字拼音首字母
create function fun_getPY(@str nvarchar(4000))
returns nvarchar(4000)
as
begin
    declare @word nchar(1),@PY nvarchar(4000)
    set @PY=''
    while len(@str)>0
    begin
        set @word=left(@str,1)
        --如果非汉字字符,返回原字符
        set @PY=@PY+(case when unicode(@wordbetween 19968 and 19968+20901

        then (select top 1 PY from (
        select 'A' as PY,N'' as word
        union all select 'B',N'簿'
        union all select 'C',N''
        union all select 'D',N''
        union all select 'E',N''
        union all select 'F',N''
        union all select 'G',N''
        union all select 'H',N''
        union all select 'J',N''
        union all select 'K',N''
        union all select 'L',N''
        union all select 'M',N''
        union all select 'N',N''
        union all select 'O',N''
        union all select 'P',N''
        union all select 'Q',N''
        union all select 'R',N''
        union all select 'S',N''
        union all select 'T',N''
        union all select 'W',N''
        union all select 'X',N''
        union all select 'Y',N''
        union all select 'Z',N''
        ) T 
        where word>=@word collate Chinese_PRC_CS_AS_KS_WS 
        order by PY ASCelse @word end)
        set @str=right(@str,len(@str)-1)
    end
    return @PY
end
函数调用实例:
select dbo.fun_getPY('中华人民共和国'),dbo.fun_getPY('中華人民共和國')
执行结果:ZHRMGHG

例3:获取汉字字符串的拼音首字母
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[fGetPy]'and xtype in (N'FN', N'IF', N'TF'))
    drop function [dbo].[fGetPy]
GO
--创建取拼音函数
create function fGetPy(@Str varchar(500)='')

returns varchar(500)
as
begin
 declare @strlen int,@return varchar(500),@ii int
 declare @n int,@c char(1),@chn nchar(1)

 select @strlen=len(@str),@return='',@ii=0
 set @ii=0
 while @ii<@strlen
 begin
  select @ii=@ii+1,@n=63,@chn=substring(@str,@ii,1)
  if @chn>'z'
  select @n = @n +1
     ,@c = case chn when @chn then char(@nelse @c end
   from(
    select top 27 * from (
     select chn = ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''  --because have no 'i'
     union all select ''

     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''
     union all select ''  --no 'u'
     union all select ''  --no 'v'
     union all select ''

     union all select ''
     union all select ''
     union all select ''
     union all select @chnas a
    order by chn COLLATE Chinese_PRC_CI_AS 
   ) as b
  else set @c='a'
  set @return=@return+@c
 end
 return(@return)
end
go
--测试
select dbo.fgetpy('东莞市'as 东莞市,dbo.fgetpy('ab中c国人'as 中国人

--删除拼音函数
drop function fgetpy 
-------------------------------------------------------------------------------------------------------------------------------------------
摘自:http://www.cnblogs.com/hzuIT/articles/947411.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/294601.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

当.NET遇到机器学习

微软中国MSDN 点击上方蓝字关注我们ML.NET 是面向 .NET 开发人员的开源跨平台机器学习框架&#xff0c;你可以使用 C# 或 F# 创建自定义 ML 模型&#xff0c;而无需离开.NET 生态系统。ML.NET 使你能够在联机或脱机场景中将机器学习添加到 .NET 应用程序中。借助此功能&#x…

当你和你女朋友闹矛盾时......

1 听起来是这么个道理&#xff08;素材来源网络&#xff0c;侵删&#xff09;▼2 真的是非常专一了&#xff08;via.皎皎月当楼&#xff09;▼3 给朋友定做的蛋糕&#xff08;素材来源网络&#xff0c;侵删&#xff09;▼4 当你和女朋友闹矛盾时▼5 师范的男孩子有多害怕&a…

Android之基于xmpp openfire smack开发之Android客户端开发[3]

http://blog.csdn.net/shimiso/article/details/11225873 在上两篇文章中&#xff0c;我们依次介绍openfire部署以及smack常用API的使用&#xff0c;这一节中我们着力介绍如何基于asmack开发一个Android的客户端&#xff0c;本篇的重点在实践&#xff0c;讲解和原理环节&#…

imx6 i2c分析

本文主要分析&#xff1a;      1. i2c设备注册      2. i2c驱动注册      3. 上层调用过程参考&#xff1a;  http://www.cnblogs.com/helloworldtoyou/p/5126618.html1. i2c设备注册 kernel/arch/arm/mach-mx6/board-mx6q_sabresd.c …

Java原来如此-随机数

在Java中&#xff0c;生成随机数有两种方法。1是使用Random类。2是使用Math类中的random方法。 我们现在做个例子&#xff0c;比如生成20个0到10之间的随机数。 1.使用Random类的nextInt(n)方法&#xff0c;n代表0到n之间&#xff0c;包括0&#xff0c;不包括n。 Random random…

python列表双中括号_python – Pandas中双括号`[[…]]`和单括号`[....

考虑一下: 来源DF: In [79]: df Out[79]: Brains Bodies 0 42 34 1 32 23 选择一列 – 导致Pandas.Series: In [80]: df[Brains] Out[80]: 0 42 1 32 Name: Brains, dtype: int64 In [81]: type(df[Brains]) Out[81]: pandas.core.series.Series 选择DataFrame的子集 – 导致…

TableView详解

&#xff0d;、建立 UITableView DataTable [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)]; [DataTable setDelegate:self]; [DataTable setDataSource:self]; [self.view addSubview:DataTable]; [DataTable release]; 二、UITableView各Method说明 //Sec…

PowerToys插件扩展(类似Alfred)

在mac系统除了自带的Spotlight还有一个很好用的工具叫Alfredimage在windows系统也有一个很好用的工具叫PowerToys&#xff0c;是微软的一个开源项目imagehttps://github.com/microsoft/PowerToys从上面的github地址可以下载安装包。image它有很多快捷功能&#xff0c;请大家自己…

Android之基于xmpp openfire smack开发之Android消息推送技术原理分析和实践[4]

http://blog.csdn.net/shimiso/article/details/8156439 前面几篇给大家系统讲解的有关xmpp openfire smack asmack相关的技术和使用&#xff0c;大家如果有所遗忘可以参考 顺便也一起回顾下xmpp的历程 xmpp协议起源于著名的Linux即时通讯服务服务器jabber,有时候我们会把xmp…

12年前的高考到底有多难,只在这一道题上就看出来了...

▲ 点击查看2008年高考江西数学考卷的最后一题&#xff0c;说是高考史上最恐怖的数学题&#xff0c;应该没有异议。这道题到底有多难呢&#xff1f;最后这道压轴题一共是14分。考试结果出来&#xff0c;所有考生的平均分是0.31分。曾有一位同学这样介绍&#xff1a;“在我们学校…

Cypher查询语言--Neo4j-WHERE(三)

目录 WhereBoolean 操作类型节点属性上的过滤正则表达式转义正则表达式不分大小些正则表达式关系类型上的过滤属性存在性如果缺失属性默认为true如果缺失属性默认为false空置null过滤关系过滤Where 如果需要从查找的数据的图中过滤&#xff0c;可以在查询语句中添加where子句。…

12篇学通C#网络编程——第一篇 基础之进程线程

在C#的网络编程中&#xff0c;进程和线程是必备的基础知识&#xff0c;同时也是一个重点&#xff0c;所以我们要好好的掌握一下。 一&#xff1a;概念 首先我们要知道什么是”进程”&#xff0c;什么是“线程”&#xff0c;好&#xff0c;查一下baike。 进程&#xff1a;是一个…

建立学生选课表 mysql 语句_MySQL常用SQL语句(Python实现学生、课程、选课表增删改查)...

以基本的学生选课为例&#xff0c;建立选课数据库&#xff0c;学生、班级、选课信息三张表&#xff0c;并分别对表进行插删改操作&#xff1a;import MySQLdbtry:conn MySQLdb.connect(host localhost, user root, passwd root, db xuanke, port 3306)cur conn.cursor()…

加快网站访问速度--jquery.js

jquery现在是越来越大&#xff0c;网络加载速度上我们应该做到能省就省&#xff0c;毫无疑问google的服务器和cdn以及访问速度是非常快的&#xff0c;而且google敞开怀抱&#xff0c;提供各种代码库给我们下载调用。jquery就是其中一个。 在jquery官网有从google 微软microsoft…

Android之Google推荐的图片加载库Glide介绍

原文链接:Google推荐的图片加载库Glide介绍作者 : nuuneoi译者 : jianghejie校对者 :

也谈程序员的35岁危机

前言本来这期要推一篇观察者模式和发布订阅模式的技术文给各位看官(在写了)&#xff0c;但无奈最近爱奇艺裁员事件引起了轩然大波&#xff0c;互联网上和各种技术群又展开了轰轰烈烈的讨论&#xff0c;每位IT从业者都不能独善其身。那么今天这一期我们就聊聊程序员的35岁危机究…

豆瓣评分9.4!这部大片你不应该错过,每一秒都是不敢看的残忍!

全世界只有3.14 % 的人关注了爆炸吧知识人类占据了地球上绝大多数宜居的地方&#xff0c;我们面对着温柔的地球母亲&#xff0c;但对野生动物们来说&#xff0c;地球却是一个水深火热的星球。你觉得你已经一无所有了&#xff0c;你觉得生活的负荷已经让你难以前进了&#xff1b…

Unity3D4.* NGUI制作动态字库

新建一个工程&#xff0c;这个工程必须没有中文路径&#xff0c;否则会不识别字体&#xff01;&#xff01;&#xff01; 首先导入NGUI插件&#xff0c;这里我用的是NGUI 3.0.2版本的。 在Assets 下创建一个文件夹&#xff0c;用来存放接下来的工作文件 。 这里随便选择一种字体…

【Mongodb】用户和认证 权限总结

开启MongoDB服务时不添加任何参数时,默认是没有权限验证的,登录的用户可以对数据库任意操作而且可以远程访问数据库&#xff01; 在刚安装完毕的时候MongoDB都默认有一个admin数据库,此时admin数据库是空的,没有记录权限相关的信息&#xff01;当admin.system.users一个用户…

java解析json_JAVA解析JSON数据

在使用第三方api的使用&#xff0c;有时候会从网络中获得json数据&#xff0c;所以说我们将如何解析json数据&#xff1f;下面小编将通过以下几点来进行json的讲解JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read…