在SQLServer中如果實現Windows資料夾中按名稱排序?演算法是什麼怎麼Order By

時間 2021-10-14 23:47:33

1樓:花錢閱嚇

sql server的排序規則平時使用不是很多,也許不少初學者還比較陌生,但有乙個錯誤大家應是經常碰到: sql 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

這樣,錯誤就出現了:

伺服器: 訊息 446,級別 16,狀態 9,行 1

無法解決 equal to 操作的排序規則衝突。

要排除這個錯誤,最簡單方法是,表連線時指定它的排序規則,這樣錯誤就不再出現了。語句這樣寫:

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區分

區分大小寫:如果想讓比較將大寫字母和小寫字母視為不等,請選擇該選項。

區分重音:如果想讓比較將重音和非重音字母視為不等,請選擇該選項。如果選擇該選項,比較還將重音不同的字母視為不等。

區分假名:如果想讓比較將片假名和平假名日語音節視為不等,請選擇該選項。

區分寬度:如果想讓比較將半形字元和全形字符視為不等,請選擇該選項

三.排序規則的應用:

sql server提供了大量的windows和sqlserver專用的排序規則,但它的應用往往被開發人員所忽略。其實它在實踐中大有用處。

例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

drop table #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 三

*/四.在實踐中排序規則應用的擴充套件

sql server漢字排序規則可以按拼音、筆劃等排序,那麼我們如何利用這種功能來處理漢字的一些難題呢?我現在舉個例子:

用排序規則的特性計算漢字筆劃

要計算漢字筆劃,我們得先做準備工作,我們知道,windows多國漢字,unicode目前

收錄漢字共20902個。簡體gbk碼漢字unicode值從19968開始。

首先,我們先用sqlserver方法得到所有漢字,不用字典,我們簡單利用sql語句就可以得到:

select top 20902 code=identity(int,19968,1) into #t from syscolumns a,syscolumns b

再用以下語句,我們就得到所有漢字,它是按unicode值排序的:

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 cnword

----------- ------

19968 一

20008 丨

20022 丶

20031 丿

20032 乀

20033 乁

20057 乙

20058 乚

20059 乛

20101 亅

19969 丁

..........

從上面的結果,我們可以清楚的看到,一筆的漢字,code是從19968到20101,從小到大排,但到了二筆漢字的第乙個字「丁」,code為19969,就不按順序而重新開始了。有了這結果,我們就可以輕鬆的用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=@a collate chinese_prc_stroke_cs_as_ks_ws

order by id

id-----------

8(結果:漢字「國」筆劃數為8)

上面所有準備過程,只是為了寫下面這個函式,這個函式撇開上面建的所有臨時表和固定表,為了通用和**轉移方便,把錶tab_hzbh的內容寫在語句內,然後計算使用者輸入一串漢字的總筆劃:

create function fun_getbh(@str nvarchar(4000))

returns int

asbegin

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(@word) between 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 asc) else 0 end)

set @str=right(@str,len(@str)-1)

endreturn @n

end--函式呼叫例項:

select dbo.fun_getbh('中華人民共和國'),dbo.fun_getbh('中華人民共和國')

執行結果:筆劃總數分別為39和46,簡繁體都行。

當然,你也可以把上面「union all」內的漢字和筆劃改存在固定表內,在漢字列建clustered index,列排序規則設定為:

chinese_prc_stroke_cs_as_ks_ws

這樣速度更快。如果你用的是big5碼的作業系統,你得另外生成漢字,方法一樣。但有一點要記住:

這些漢字是通過sql語句select出來的,不是手工輸入的,更不是查字典得來的,因為新華字典畢竟不同於unicode字符集,查字典的結果會不正確。

用排序規則的特性得到漢字拼音首字母

用得到筆劃總數相同的方法,我們也可以寫出求漢字拼音首字母的函式。如下:

create function fun_getpy(@str nvarchar(4000))

returns nvarchar(4000)

asbegin

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(@word) between 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 asc) else @word end)

set @str=right(@str,len(@str)-1)

endreturn @py

end--函式呼叫例項:

select dbo.fun_getpy('中華人民共和國'),dbo.fun_getpy('中華人民共和國')

結果都為:zhrmghg

你若有興趣,也可用相同的方法,擴充套件為得到漢字全拼的函式,甚至還可以得到全拼的讀音聲調,不過全拼分類大多了。得到全拼最好是用對照表,兩萬多漢字搜尋速度很快,用對照表還可以充分利用表的索引。

在sqlserver2019中if語句怎樣顯示select的結果

用這個 我測試過了 create procedure stu age sno char 3 returnzhi nvarchar 2 nullas begin isnumeric sno 如果你這地方是判斷是否是數字 就這樣寫 isnumeric sno 1 你這樣寫是沒有意義的 if len sn...

SQL語句在SQL Server中建立表時如何引用其他表的字段來進行計算

4終 1 登陸sql server。2 單擊資料庫,選擇要在哪個資料庫建立表。3 新建查詢按鈕,進入編輯介面。4 以建立學生表為例。5 將建立好的表儲存,就完成了。注意事項 表之間的列要用英文的 逗號 隔開,表的sql語句不區分大小寫,sql語句只能在整個編輯結束時才能用分號,也可以不用分號。 ba...

海賊王中震震果實是最強超人系果實嗎,如果不是那哪是

惡魔果實幾乎是 海賊王 中人手必備的一件助力 那麼作為乙個貫穿全劇的東西,而且還是乙個助力神器,那麼肯定就會有人想比較其好壞了,而在劇中白鬍子可以說是人們心中公認的最強存在,因為他的震震果實是個很逆天的存在,相信在路飛去解救自己的哥哥艾斯時就可以看出來,因為白鬍子的惡魔果實可以引起空間扭曲,造成 相...