• SQL Server 获取汉语拼音简码


    alter FUNCTION FB_GetChineseSpell
    (
        
    @Str   varchar(500)=''
    )
    RETURNS  varchar(500)
    as   
      
    begin   
        
    declare @strLen int
        
    declare @index int
        
    declare @VChControl char(2)
        
    DECLARE @VChSpell VARCHAR(30)
        
    declare @return varchar(500)
        
    set @return=''
        
    set @strlen=len(@str)
        
    set @index=1
        
    while @index<=@strlen
        
    begin
            
    select @VChControl=substring(@str,@index,1)
             
    IF @VChControl>'' AND @VChControl<'' 
                
    SELECT @VChSpell='A'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='B'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='C'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='D'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='E'
            
    ELSE IF @VChControl>='' AND @VChControl<=''
                
    SELECT @VChSpell='F'
            
    ELSE IF @VChControl>'' AND @VChControl<'' 
                
    SELECT @VChSpell='G'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='H'
            
    ELSE IF @VChControl>='' AND @VChControl<''
                
    SELECT @VChSpell='J'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='K'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='L'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='M'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='N'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='O'
            
    ELSE IF @VChControl>='' AND @VChControl<''
                
    SELECT @VChSpell='P'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='Q'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='R'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='S'
            
    ELSE IF @VChControl>='' AND @VChControl<''
                
    SELECT @VChSpell='T'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='W'
            
    ELSE IF @VChControl>='' AND @VChControl<''
                
    SELECT @VChSpell='X'
            
    ELSE IF @VChControl>='' AND @VChControl<'' 
                
    SELECT @VChSpell='Y'
            
    ELSE IF @VChControl>='' AND @VChControl<='' 
                
    SELECT @VChSpell='Z'
            
    ELSE
                
    SELECT @VChSpell=@VChControl

            
    SELECT @return=@return + RTRIM(UPPER(@VChSpell))
            
    set @index=@index+1
        
    end
      
    return(@return)   
      
    end
  • 相关阅读:
    影响stm32仿真的因素
    DMA 如何查看它有没有传输完成 传输完成再开启
    keil出错总结
    一个例子讲解wav头文件 stm32声音程序 录音和播放 wav
    前期绑定 vs 后期绑定
    抽象类 VS 接口 (3)
    抽象类 VS 接口(1)
    封装之--JAVA中的访问修饰符(区别于.NET)
    【DP专题】——洛谷P1156垃圾陷阱
    MySql
  • 原文地址:https://www.cnblogs.com/cpine/p/2123969.html
Copyright © 2020-2023  润新知