Viewing post 1 (of 1 total)
You can use below script to split the string with comma
DECLARE @s-2 varchar(max),
@Split char(1),
@X xml
SELECT @s-2 = 'A,B,C',
@Split =...
May 12, 2013 at 8:22 am
#1614445