I have a problem, I have the following line of strings
0009 - The Good Boy Song
0003 - Alphabet Song
0008 - Flame-thrower Guide
I have a split function that currently takes two parameters,
ALTER FUNCTION [dbo].[Split]
(
@String NVARCHAR(4000),
@Delimiter NCHAR(1)
)
RETURNS TABLE
AS
RETURN
(
WITH Split(stpos,endpos)
AS(
SELECT 0 AS stpos, CHARINDEX(@Delimiter2,@String) AS endpos
UNION ALL
SELECT endpos+1, CHARINDEX(@Delimiter,@String,endpos+1)
FROM Split
WHERE endpos > 0
)
SELECT 'Id' = ROW_NUMBER() OVER (ORDER BY (SELECT 1)),
'Data' = SUBSTRING(@String,stpos,COALESCE(NULLIF(endpos,0),LEN(@String)+1)-stpos)
FROM Split
)
I need to make sure that the ouput is something like
Id Data
0009 The Good Boy Song
0003 Alphabet Song
0008 Flame-thrower Guide
and not something like
0009 The Good Boy Song
0003 Alphabet Song
0008 Flame
thrower Guide
I'm using this on SSRS, where in I'm sending a multiple valued argument, it looks like this as SSRS sends multiple values in CSV form.
'0009 - The Good Boy Song,0003 - Alphabet Song,0008 - Flame-thrower Guide'
How I update my function to handle this scenario?