Viewing post 1 (of 1 total)
I have no performance comparisons but you could also use the COALESCE function. I pulled this from one of my stored procedures:
DECLARE @result varchar(max)
SELECT
@result = coalesce(@result + ',...
October 14, 2009 at 2:17 pm
#1065963