日期:2014-05-16  浏览次数:20805 次

根据汉字拼音首字母,英文单词首字母排序
如字段下有数据:Apple ,Cat,斑纹   。如何经过查询排序后输出Apple ,斑纹, Cat  ?
------解决方案--------------------
这个得取得中文字的拼音的,

汉字转拼音函数
http://blog.csdn.net/sqlserverdiscovery/article/details/8568642

 select v
 from
 (
 select 'Apple' as v union all
 select 'Cat' union all
 select '斑纹'
 )t
 order by dbo.fn_GetPinyin(v)
 /*
 v
Apple
斑纹
Cat
 */
-

------解决方案--------------------
返回汉字的首字母
ALTER function [dbo].[GetPY](@str varchar(500)) 
returns varchar(500) 
as 
begin 
   declare @cyc int,@length int,@str1 varchar(100),@charcate varbinary(20) 
   set @cyc=1--从第几个字开始取 
   set @length=len(@str)--输入汉字的长度 
   set @str1=''--用于存放返回值 
   while @cyc<=@length 
       begin   
          select @charcate=cast(substring(@str,@cyc,1) as varbinary)--每次取出一个字并将其转变成二进制,便于与GBK编码表进行比较 
if @charcate>=0XB0A1 and @charcate<=0XB0C4 
         set @str1=@str1+'A'--说明此汉字的首字母为A,以下同上 
    else if @charcate>=0XB0C5 and @charcate<=0XB2C0 
      set @str1=@str1+'B' 
else if @charcate>=0XB2C1 and @charcate<=0XB4ED 
      set @str1=@str1+'C' 
else if @charcate>=0XB4EE and @charcate<=0XB6E9 
      set @str1=@str1+'D' 
else if @charcate>=0XB6EA and @charcate<=0XB7A1 
                       set @str1=@str1+'E' 
else if @charcate>=0XB7A2 and @charcate<=0XB8C0 
             set @str1=@str1+'F' 
else if @charcate>=0XB8C1 and @charcate<=0XB9FD 
                       set @str1=@str1+'G' 
else if @charcate>=0XB9FE and @charcate<=0XBBF6 
       set @str1=@str1+'H' 
else if @charcate>=0XBBF7 and @charcate<=0XBFA5 
       set @str1=@str1+'J' 
else if @charcate>=0XBFA6 and @charcate<=0XC0AB 
       set @str1=@str1+'K' 
else if @charcate>=0XC0AC and @charcate<=0XC2E7 
       set @str1=@str1+'L' 
else if @charcate>=0XC2E8 and @charcate<=0XC4C2 
       set @str1=@str1+'M' 
else if @charcate>=0XC4C3 and @charcate<=0XC5B5 
       set @str1=@str1+'N' 
   else if @charcate>=0XC5B6 and