I have a table as shown below.
**id | location**
1 | East Flow
2 | East Level
3 | East Pressure
I would like to convert the above table as follows using select statement in Mysql.
1 | 2 | 3
East Flow | East Level | East Pressure
I am using MySql 5.5 Please help.