Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Concatenating Rows

    How about something like this: (similar to solution 2)

    DECLARE @listCol VARCHAR(2000)

    SELECT @listCol = STUFF(( SELECT DISTINCT ', ' + name

    ...

Viewing post 1 (of 1 total)