Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Concatenating Rows

    Here is another solution to the problem that I usually use.

    declare @res varchar(max)

    select @res = isnull(@res + ', ', '') + name from table_source order by id

    select @res

    Here table_source can...

Viewing post 1 (of 1 total)