I have a query in mysql which returns the following:
Amount1 Amount2 Amount3
0.1 0.3 0.6
I need the data in the following format:
Amount1 0.1
Amount2 0.3
Amount3 0.6
The query always return a single row with three columns. How can I change the format?
Thanks