sql >> Databáze >  >> Database Tools >> SSMS

Rozdělení hodnot oddělených čárkou

Můžete vytvořit uživatelsky definovaný UDF, jako je ten, který je zobrazen níže. Pak stačí předat čárkami oddělený seznam z jiného dotazu a vrátí tabulku s každou hodnotou na samostatném řádku.

CREATE FUNCTION [dbo].[fnSplitStringAsTable] 
(
    @inputString varchar(MAX),
    @delimiter char(1) = ','
)
RETURNS 
@Result TABLE 
(
    Value varchar(MAX)
)
AS
BEGIN
    DECLARE @chIndex int
    DECLARE @item varchar(100)

    -- While there are more delimiters...
    WHILE CHARINDEX(@delimiter, @inputString, 0) <> 0
        BEGIN
            -- Get the index of the first delimiter.
            SET @chIndex = CHARINDEX(@delimiter, @inputString, 0)

            -- Get all of the characters prior to the delimiter and insert the string into the table.
            SELECT @item = SUBSTRING(@inputString, 1, @chIndex - 1)

            IF LEN(@item) > 0
                BEGIN
                    INSERT INTO @Result(Value)
                    VALUES (@item)
                END

            -- Get the remainder of the string.
            SELECT @inputString = SUBSTRING(@inputString, @chIndex + 1, LEN(@inputString))
        END

    -- If there are still characters remaining in the string, insert them into the table.
    IF LEN(@inputString) > 0
        BEGIN
            INSERT INTO @Result(Value)
            VALUES (@inputString)
        END

    RETURN 
END


  1. Zakázáno:Nemáte oprávnění k přístupu / na tento server, chyba WAMP

  2. Jak zastavit SSMS 2012 ve skriptování SP pomocí sp_executesql

  3. Jak nastavit cizí klíč, který je závislý na vztahu dalších dvou tabulek?

  4. SQL dotaz, pokud je hodnota null, vrátí 1