SQL存储过程获取拼音助记码
SQL存储过程获取拼音助记码
SQL Code: ALTER FUNCTION [dbo].[ufn_GetPY] ( @strChinese VARCHAR(500)='' --中文 ) RETURNS VARCHAR(500) AS BEGIN /*********************************************************** 创建取拼音首字母函数 print dbo.ufn_GetPY('C/S快速开发框架') ************************************************************/ declare @strLen int,@return varchar(500),@i int declare @n int,@c char(1),@chn nchar(1) select @strLen=len(@strChinese),@return='',@i=0 while @i<@strLen begin /*while循环开始*/ select @i=@i+1,@n=63,@chn=substring(@strChinese,@i,1) if @chn>'z'/*原理:“字符串排序以及ASCII码表”*/ select @n = @n +1,@c =case chn when @chn then char(@n) else @c end from(select top 27 * from (select chn = '吖' union all select '八' union all select '嚓' union all select '咑' union all select '妸' union all select '发' 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 else set @c=@chn set @return=@return+@c end /*while循环结束*/ return(@return) END /*函数实现结束*/ //来源:C/S框架网(www.csframework.com) QQ:23404761
参考文档:
关于存储过程命名加"sp_"前缀的问题 平台内所有的SQL都用存储过程? C/S开发框架企业版数据库改名后需要修改的存储过程、函数和视图 新建业务账套需要修改的存储过程、函数和视图 调用存储过程或LinkServer出错:拒绝了对对象 xxx架构 'sys')的EXECUTE权限 业务数据库模板表结构、存储过程及函数(CSFrameworkV5.New) SQL Server 存储过程详解 SQL存储过程:删除基础资料前逻辑判断,检查是否有关联业务数据 SQL脚本获取SQLServer数据库目录存储过程:f_GetDBPath 删除数据库备份文件存储过程:p_DeleteBakFiles SQL备份数据库存储过程:p_BackupDB 软件开发与设计 - BBS-电子布告栏系统-[博客空间]SZBlogsAT 深博问测系统存储过程版 v1.0 MSSQL 查询所有用户自定义存储过程和自定义函数 CSFrameworkV5.0旗舰版-数据库存储过程、函数列表 超出了存储过程、函数、触发器或视图的最大嵌套层数(最大层数为 32)
其它资料:
什么是C/S结构? | C/S框架核心组成部分 | C/S框架-WebService部署图 | C/S框架-权限管理 | C/S结构系统框架 - 5.1旗舰版介绍 | C/S结构系统框架 - 功能介绍 | C/S结构系统框架 - 产品列表 | C/S结构系统框架 - 应用展示(图) | 三层体系架构详解 | C/S架构轻量级快速开发框架 | C/S框架网客户案例 | WebApi快速开发框架 | C/S框架代码生成器 | 用户授权注册软件系统 | 版本自动升级软件 | 数据库底层应用框架 | CSFramework.CMS内容管理系统 | |