Could you help me one case, below
I have an original table, like this:
MONTH | YEAR | PO1 | PO2 | PO3
+++++++++++++++++++++++++++++++++++++++++
01 2010 100 20 10
then I want a result is like this:
DESCRIPTION | VALUE
+++++++++++++++++++++++++++++++++++++++++
PO1 100
PO2 20
PO3 10
How should i do this in SQL Server, I really thanks for your advance.