Viewing post 1 (of 2 total)
Thanks
The query would be
select PointID, X, Y
from Points
pivot
(
max(Value)
for Axis in (X, Y)
)
February 19, 2014 at 5:42 pm
#1690520