最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

sqlServer 獲取漢字字串的拼音聲母

 更新時間:2009年11月08日 23:46:00   作者:  
sqlServer 中 獲取漢字字串的拼音聲母,需要的朋友可以參考下。
復(fù)制代碼 代碼如下:

CREATE function fGetPy(@str varchar(500)='')
returns varchar(500)
as
begin
declare @strlen int,@return varchar(500),@ii int
declare @c nchar(1),@chn nchar(1)
select @strlen=len(@str),@return='',@ii=0
set @ii=0
while @ii<@strlen
begin
select @ii=@ii+1,@chn=substring(@str,@ii,1)
if @chn>='吖'
select @c = char(count(*)+63) from (
select top 27 * from (
select chn = '吖'
union all select '八'
union all select '嚓'
union all select '咑'
union all select '妸'
union all select '發(fā)'
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 @chn
) as a
order by chn COLLATE Chinese_PRC_CI_AS ) as b
where b.chn <=@chn
else set @c=@chn
set @return=@return+@c
end
return(@return)
end

相關(guān)文章

最新評論

肇庆市| 连江县| 瑞金市| 温宿县| 广南县| 屯门区| 永德县| 中方县| 云霄县| 石家庄市| 桦甸市| 民和| 延长县| 乐昌市| 黑龙江省| 阿勒泰市| 大同县| 遂宁市| 福鼎市| 皋兰县| 施甸县| 牙克石市| 栾城县| 尉氏县| 英超| 从化市| 马公市| 定远县| 美姑县| 乌拉特前旗| 宁化县| 屯昌县| 永昌县| 阳曲县| 南靖县| 聂拉木县| 集贤县| 兰考县| 盐亭县| 紫阳县| 正蓝旗|