最新国产好看的视频,伊人天堂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)文章

最新評論

晋江市| 晋州市| 永德县| 绵竹市| 芜湖市| 县级市| 固阳县| 竹北市| 柞水县| 峡江县| 阳泉市| 夏河县| 桐乡市| 松桃| 城步| 天祝| 固原市| 青铜峡市| 色达县| 沂源县| 宣化县| 利津县| 定安县| 汨罗市| 句容市| 黔南| 湖州市| 金阳县| 绥阳县| 札达县| 黑龙江省| 桑日县| 桑植县| 红安县| 达州市| 岳阳市| 上犹县| 铁岭市| 揭阳市| 巨野县| 应用必备|