I have a mysql table:
| Col1 | Col2 | Col3 |
++++++++++++++++++++++
| 3.2 | 2 | 1 |
Is there a way to get data like this:
| Name | Value |
++++++++++++++++
| Col1 | 3.2 |
| Col2 | 2 |
| Col3 | 1 |
I need query which allow me to get column name and value.