I have looked everywhere for an explanation; I'm stumped. Here's the problem:
Querying only 1 table.
Here's the basic table:
Year ----------AvgListPrice--------------SqFoot
2006 --------------2----------------------8
2007 ------------- 4-----------------------9
2008--------------3-----------------------4
I want the query to return results like this:
------------------- 2006----------- 2007-----------2008
AvgList Price---------2----------------4 ------------- 3
SqFoot ------------- 8--------------- 9 --------------4
This is only a couple of fields in the table; there are more. I've tried my things with CASE, IF, to no avail.
Any help or insight would be greatly appreciated. Thanks!
