It has been a couple of years since I have done this, so I need to brush up.
I have a query (QRYSOMETHING) that has 3 columns and 1 record.
length | width| height
20in | 2ft | 10ft
I need to rotate that to say
length | 20ft
width | 2ft
height | 10ft
I thought it was:
SELECT [qrysomething].length,[qrysomething].width,[qrysomething].height
FROM [qrysomething]
UNION ALL
I remember it being simple. What is wrong with my syntax?
Thanks in advance!