- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
sql取拼音(全拼)
sql取拼音(全拼)
sql取拼音(全拼).txt——某天你一定会感谢那个遗弃你的人,感谢那个你曾深爱着却置之你不顾的人。做一个没心没肺的人,比什么都强。________舍不得又怎样到最后还不是说散就散。
/*
根据汉字获取全拼
1.生成所有读音临时表
2.根据Chinese_PRC_CS_AS_KS_WS 排序获取读音
*/
create function f_GetAllPy(@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 @
原创力文档


文档评论(0)