Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Concatenating Rows

    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 + ',...

Viewing post 1 (of 1 total)