Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Make Rows As Columns

    Here is the Solution :

    ;with q as(

    select ProductID, EventTime, RoleName

    , ROW_NUMBER() over (order by EventTime) rn

    , ROW_NUMBER() over (partition by...

Viewing post 1 (of 1 total)