Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Help with PIVOT

    Try This.

    SELECT salaryrange,orders

    FROM

    (SELECT salaryrange, Col1, Col2, Col3, Col4, Col5

    FROM #salaryrange) p

    UNPIVOT

    (orders FOR ID IN

    ...

Viewing post 1 (of 2 total)