SQL 表值函数

表值函数返回的是一张表。

情况:把传入的字符串按指定分隔符转换成数组

理解:把字符串打散,逐个插入表,这个表就是需要的数据

Create Function [dbo].[Split]

(

    @Sql varchar(8000),

    @Splits varchar(10)

)

returns @temp Table (a varchar(100))

As

Begin

    Declare @i Int

    Set @Sql = RTrim(LTrim(@Sql))

    Set @i = CharIndex(@Splits,@Sql)

    While @i >= 1

    Begin

        Insert @temp Values(Left(@Sql,@i-1))

        Set @Sql = SubString(@Sql,@i+1,Len(@Sql)-@i)

        Set @i = CharIndex(@Splits,@Sql)

    End

    If @Sql <> ''

    Insert @temp Values (@Sql)

    Return

End

调用:

select * from Split('1,20,13,4,5',',')

结果:

SQL 表值函数

你可能感兴趣的:(sql)