自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

SQL Server取漢字拼音的函數(shù)展示

數(shù)據(jù)庫 SQL Server
我們今天主要描述的是SQL Server取漢字拼音的函數(shù),以及對(duì)其在實(shí)際操作中要用到的實(shí)際操作代碼的詳細(xì)描述,以下就是文章的主要內(nèi)容的詳細(xì)描述。

此文章主要介紹的是SQL Server取漢字拼音的函數(shù),如果你對(duì)SQL Server取漢字拼音的函數(shù)心存好奇的話,以下的文章將會(huì)揭開它的神秘面紗,以下就是文章的詳細(xì)內(nèi)容介紹,望大家借鑒。

  1. Create function fun_getPY   
  2. (   
  3. @str nvarchar(4000)   
  4. )   
  5. returns nvarchar(4000)   
  6. as   
  7. begin   
  8. declare @word nchar(1),@PY nvarchar(4000)   
  9. set @PY=''   
  10. while len(@str)>0   
  11. begin   
  12. set @word=left(@str,1)   

 

如果非漢字字符,返回原字符

  1. set @PY=@PY+(case when unicode(@word) between 19968 and 19968+20901   
  2. then (   
  3. select top 1 PY   
  4. from   
  5. (   
  6. select 'A' as PY,N'驁' as word   
  7. union all select 'B',N'簿'   
  8. union all select 'C',N'錯(cuò)'   
  9. union all select 'D',N'鵽'   
  10. union all select 'E',N'樲'   
  11. union all select 'F',N'鰒'   
  12. union all select 'G',N'腂'   
  13. union all select 'H',N'夻'   
  14. union all select 'J',N'攈'   
  15. union all select 'K',N'穒'   
  16. union all select 'L',N'鱳'   
  17. union all select 'M',N'旀'   
  18. union all select 'N',N'桛'   
  19. union all select 'O',N'漚'   
  20. union all select 'P',N'曝'   
  21. union all select 'Q',N'囕'   
  22. union all select 'R',N'鶸'   
  23. union all select 'S',N'蜶'   
  24. union all select 'T',N'籜'   
  25. union all select 'W',N'鶩'   
  26. union all select 'X',N'鑂'   
  27. union all select 'Y',N'韻'   
  28. union all select 'Z',N'咗'   
  29. ) T   
  30. where word>=@word collate Chinese_PRC_CS_AS_KS_WS   
  31. order by PY ASC   
  32. )   
  33. else @word   
  34. end)   
  35. set @str=right(@str,len(@str)-1)   
  36. end   
  37. return @PY   
  38. end  

以上的相關(guān)內(nèi)容就是對(duì)SQL Server取漢字拼音的函數(shù)的介紹,望你能有所收獲。

責(zé)任編輯:佚名 來源: 新華網(wǎng)
相關(guān)推薦

2010-07-01 16:52:53

SQL Server數(shù)

2010-09-06 16:07:21

SQL函數(shù)

2010-07-09 17:07:14

SQL Server數(shù)

2010-07-12 08:36:35

SQL Server數(shù)

2010-09-09 10:32:24

SQL函數(shù)拼音

2010-10-25 10:20:33

ORACLE函數(shù)

2010-07-22 10:38:12

SQL Server所

2010-10-14 16:45:54

MySQL查詢

2010-07-14 16:28:07

SQL server2

2022-09-24 16:53:05

Python工具辦公

2010-07-09 09:24:37

SQL Server分

2010-11-12 11:00:11

SQL SERVER內(nèi)

2010-09-14 14:22:30

Sql Server日

2010-11-10 14:35:17

SQL Server創(chuàng)

2010-07-09 10:08:53

SQL Server函

2010-07-12 11:38:24

SQL Server函

2010-06-18 10:50:55

ms SQL Serv

2020-12-03 09:33:58

前端開發(fā)工具

2010-10-21 15:21:06

SQL Server系

2020-07-08 13:38:21

Go拼音工具
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)