I have the following table in mysql:
A B C D
1 2 3 4
And I want to transorm it into
<title1> <title2>
A 1
B 2
C 3
D 4
I only found complicated stuff, does anyone know of a simple staright forward function that does this?
1 Answer