Possible Duplicate:
How do I display mysql table row as column
I have a column days in which there are two rows day1 and day2, now I need to display days rows as two separate columns.
table name : test
column
**days**
day1
day2
AFTER RUNNING THE QUERY IT SHOULD BE LIKE :
coum1 couml2
day1 day2
Need help with doing it in MySQL.