随笔 - 631  文章 - 75  评论 - 186  阅读 - 143万

DBS-Function:f_GetPy

ylbtech-SQL Server-Function:f_GetPy
 
1、f_GetPy
复制代码
Create function   [dbo].[f_GetPy](@str   nvarchar(4000)) 
returns   nvarchar(4000) 
as 
begin 
declare   @strlen   int,@re   nvarchar(4000) 
declare   @t   table(chr   nchar(1)   collate   Chinese_PRC_CI_AS,letter   nchar(1)) 
insert   into   @t(chr,letter) 
    select   '', 'A '   union   all   select   '', 'B '   union   all 
    select   '', 'C '   union   all   select   '', 'D '   union   all 
    select   '', 'E '   union   all   select   '', 'F '   union   all 
    select   '', 'G '   union   all   select   '', 'H '   union   all 
    select   '', 'J '   union   all   select   '', 'K '   union   all 
    select   '', 'L '   union   all   select   '', 'M '   union   all 
    select   '', 'N '   union   all   select   '', 'O '   union   all 
    select   '', 'P '   union   all   select   '', 'Q '   union   all 
    select   '', 'R '   union   all   select   '', 'S '   union   all 
    select   '', 'T '   union   all   select   '', 'W '   union   all 
    select   '', 'X '   union   all   select   '', 'Y '   union   all 
    select   '', 'Z ' 
    select   @strlen=len(@str),@re= ' ' 
    while   @strlen> 0 
    begin 
        select   top   1   @re=letter+@re,@strlen=@strlen-1 
            from   @t   a   where   chr <=substring(@str,@strlen,1) 
            order   by   chr   desc 
        if   @@rowcount=0 
            select   @re=substring(@str,@strlen,1)+@re,@strlen=@strlen-1 
    end 
    return(@re) 
end
复制代码
2、
 
 
 
warn 作者:ylbtech
出处:http://storebook.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
posted on   ylbtech  阅读(524)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 字符编码:从基础到乱码解决
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示