Home Forums Programming General Not sure how to transpose a table like this... RE: Not sure how to transpose a table like this...

  • Thanks

    The query would be

    select PointID, X, Y

    from Points

    pivot

    (

    max(Value)

    for Axis in (X, Y)

    )