Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Converting rows into one column

    I tried TonyJ's suggestion since it was easy enough for me.

    select

    FirstName

    , lastName

    , max(Case when ContractType = 'Fixed' then ContractType else '0' end)

    + ',' + max(Case when ContractType...

Viewing post 1 (of 1 total)