Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Concatenating Rows

    Below is simple sql that does that

    declare @res varchar(Max)

    select @res = coalesce(@res + ',', '') + [name]

    from

    (

    select 'Apple' as name,...

Viewing post 1 (of 1 total)