zoukankan      html  css  js  c++  java
  • [Sql Server][原创]

    -- 返回字符串以分隔符分隔的第n(1/2/3……)个字符换

    USE [EPICOR10]
    GO
    /****** Object:  UserDefinedFunction [dbo].[AH_Entry]    Script Date: 2017-12-23 16:30:39 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    /*
        改自:Ice.Entry(@idx int, @char_expr nvarchar(max), @delim nchar(1))
    
        select ice.Entry(1,'http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/')
        select dbo.AH_Entry(2,'http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/')
    
        select SubString(dbo.AH_Entry(dbo.AH_Num_Entries('http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/'),'http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/'),0,CharIndex('/',dbo.AH_Entry(dbo.AH_Num_Entries('http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/'),'http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/')))
    */
    
    ALTER function [dbo].[AH_Entry](@idx int, @char_expr nvarchar(max), @delim nvarchar(100))
    returns nvarchar(max)
    as
    begin
      declare @begin int, @end int, @count int
      declare @str nvarchar(max)
      set @count = 1
      set @begin = 1
      set @end = charindex(@delim, @char_expr)
      if @idx <= 0
        return (NULL)
      if (@end = 0) and @idx > 1
        return (NULL)
      if (@end = 0) and @idx = 1
        return @char_expr
      set @str = @char_expr
      while charindex(@delim, @str) > 0 and @count < @idx
      begin
        set @begin = charindex(@delim, @str) + len(@delim)
        set @str = substring(@str, @begin, len(@str) - @begin + 1)
        set @count = @count + 1
      end
      if @count < @idx
        return (NULL)
      if charindex(@delim, @str) > 0
        set @str = substring(@str, 1, charindex(@delim, @str) - 1)
      else
        set @str = substring(@str, 1, len(@str))
      return (@str)
    end

    -- 返回字符串以分隔符分隔的字符数

    USE [EPICOR10]
    GO
    /****** Object:  UserDefinedFunction [dbo].[AH_Num_Entries]    Script Date: 2017-12-23 16:35:01 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    /*
        改自:Ice.num_entries(@char_expr nvarchar(max), @delim nchar(1))
    
        select ice.num_entries('http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/')
        select dbo.AH_Num_Entries('http://192.168.0.251/PackInfo/Tiger/FM/TG17/PC/Chest Strap/A1.jpg','Tiger/')
    
        select dbo.AH_Num_Entries('http://192.168.0.251/PackInfo/Tiger/FM/TG17/Tiger/PC/Chest Strap/A1.jpg','Tiger/')
    */
    
    
    ALTER function [dbo].[AH_Num_Entries](@char_expr nvarchar(max), @delim nvarchar(100))
    returns int
    as
    begin
      declare @begin int, @count int
      declare @str nvarchar(max)
      set @count = 1
      set @begin = 1
      if len(@char_expr) <= 0
        return (0)
      set @str = @char_expr
      while charindex(@delim, @str) > 0
      begin
        set @begin = charindex(@delim, @str) + len(@delim)
        set @str = substring(@str, @begin, len(@str) - @begin + 1)
        set @count = @count + 1
      end
      return (@count)
    end
    博客标明【原创】的文章都是本人亲自编写内容! 如有需要转载, 请标明出处:辉创1989(http://www.cnblogs.com/ahui1989/),届时非常感谢! 文章分享在此,希望我之原创有帮到你们! 如有不足之处也可联系我,以便我们共同探讨! 本人现职为Epicor10 系统 开发维护工作,如有需要可共同探讨相关技术知识及经验总结! QQ:929412592
  • 相关阅读:
    Javascript中最常用的55个经典技巧(转)
    Yahoo!网站性能最佳体验的34条黄金守则(转载)
    你误解了Windows的文件后缀名吗?
    你不知道的Spring配置文件
    Thrift 个人实战--Thrift 的序列化机制
    Thrift 个人实战--Thrift 网络服务模型
    Thrift 个人实战--初次体验Thrift
    HBase 实战(2)--时间序列检索和面检索的应用场景实战
    Kafka实战系列--Kafka API使用体验
    Kafka实战系列--Kafka的安装/配置
  • 原文地址:https://www.cnblogs.com/ahui1989/p/8093754.html
Copyright © 2011-2022 走看看