Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL Server Equivalente a ORACLE INSTR

Eri perfetto su quella nth_appearance non esiste in SQL Server.

Copiare senza vergogna una funzione (Equivalente di INSTR di Oracle con 4 parametri in SQL Server ) creato per il tuo problema (tieni presente che @Occurs non viene utilizzato allo stesso modo di Oracle - non puoi specificare "3a apparizione", ma "si verifica 3 volte"):

CREATE FUNCTION udf_Instr
    (@str1 varchar(8000), @str2 varchar(1000), @start int, @Occurs int)
RETURNS int
AS
BEGIN
    DECLARE @Found int, @LastPosition int
    SET @Found = 0
    SET @LastPosition = @start - 1

    WHILE (@Found < @Occurs)
    BEGIN
        IF (CHARINDEX(@str1, @str2, @LastPosition + 1) = 0)
            BREAK
          ELSE
            BEGIN
                SET @LastPosition = CHARINDEX(@str1, @str2, @LastPosition + 1)
                SET @Found = @Found + 1
            END
    END

    RETURN @LastPosition
END
GO

SELECT dbo.udf_Instr('x','axbxcxdx',1,4)
GO


DROP FUNCTION udf_Instr
GO