当前位置:Gxlcms > 数据库问题 > sql自动生成汉语拼音和首字母函数[转载]

sql自动生成汉语拼音和首字母函数[转载]

时间:2021-07-01 10:21:17 帮助过:6人阅读

根据汉字获取全拼 1.生成所有读音临时表 2.根据Chinese_PRC_CS_AS_KS_WS 排序获取读音 */ CREATE function f_GetPying(@str varchar(100)) returns varchar(8000) as begin declare @re varchar(8000) --生成临时表 declare @t table(chr nchar(1) collate Chinese_PRC_CS_AS_KS_WS,py nvarchar(20)) insert into @t select,a insert into @t select,aes insert into @t select,ai insert into @t select,an insert into @t select,ang insert into @t select,ao insert into @t select,ba insert into @t select,bai insert into @t select,baike insert into @t select,baiwa insert into @t select,ban insert into @t select,bang insert into @t select,bao insert into @t select,be insert into @t select,bei insert into @t select,ben insert into @t select,beng insert into @t select,bi insert into @t select,bian insert into @t select,uu insert into @t select,biao insert into @t select,bie insert into @t select,bin insert into @t select,bing insert into @t select,bo insert into @t select,bu insert into @t select,ca insert into @t select,cai insert into @t select,cal insert into @t select,can insert into @t select,cang insert into @t select,cao insert into @t select,ce insert into @t select,cen insert into @t select,ceng insert into @t select,ceok insert into @t select,ceom insert into @t select,ceon insert into @t select,ceor insert into @t select,cha insert into @t select,chai insert into @t select辿,chan insert into @t select,chang insert into @t select,chao insert into @t select,che insert into @t select,chen insert into @t select,cheng insert into @t select,chi insert into @t select,chong insert into @t select,chou insert into @t select,chu insert into @t select,chuai insert into @t select,chuan insert into @t select,chuang insert into @t select,chui insert into @t select,chun insert into @t select,chuo insert into @t select,ci insert into @t select,cis insert into @t select,cong insert into @t select,cou insert into @t select,cu insert into @t select,cuan insert into @t select,cui insert into @t select,cun insert into @t select,cuo insert into @t select,chua insert into @t select,da insert into @t select,dai insert into @t select,dan insert into @t select,dang insert into @t select,dao insert into @t select,de insert into @t select,dem insert into @t select,den insert into @t select,deng insert into @t select,di insert into @t select,dia insert into @t select,dian insert into @t select,diao insert into @t select,die insert into @t select,dei insert into @t select,dim insert into @t select,ding insert into @t select,diu insert into @t select,dong insert into @t select,dou insert into @t select,du insert into @t select,duan insert into @t select,dug insert into @t select,dui insert into @t select,dun insert into @t select,duo insert into @t select,e insert into @t select,en insert into @t select,eng insert into @t select,eo insert into @t select,eol insert into @t select,eos insert into @t select,er insert into @t select,fa insert into @t select,fan insert into @t select,fang insert into @t select,fei insert into @t select,fen insert into @t select,feng insert into @t select,fenwa insert into @t select,fiao insert into @t select,fo insert into @t select,fou insert into @t select,fu insert into @t select,fui insert into @t select,ga insert into @t select,gai insert into @t select,gan insert into @t select,gang insert into @t select,gao insert into @t select,ge insert into @t select,gei insert into @t select,gen insert into @t select,geng insert into @t select,geu insert into @t select,gib insert into @t select,go insert into @t select,gong insert into @t select,gongfen insert into @t select,gongli insert into @t select,gou insert into @t select,gu insert into @t select,gua insert into @t select,guai insert into @t select,guan insert into @t select,guang insert into @t select,gui insert into @t select,gun insert into @t select,guo insert into @t select,ha insert into @t select,hai insert into @t select,hal insert into @t select,han insert into @t select,hang insert into @t select,hao insert into @t select,haoke insert into @t select,he insert into @t select,hei insert into @t select,hen insert into @t select,heng insert into @t select,heui insert into @t select,ho insert into @t select,hol insert into @t select,hong insert into @t select,hou insert into @t select,hu insert into @t select,hua insert into @t select,huai insert into @t select,huan insert into @t select,huang insert into @t select,hui insert into @t select,

人气教程排行