Du forsøger at ophæve pivot dataene. MySQL har ikke en unpivot-funktion, så du bliver nødt til at bruge en UNION ALL
forespørgsel for at konvertere kolonnerne til rækker:
select id, 'a' col, a value
from yourtable
union all
select id, 'b' col, b value
from yourtable
union all
select id, 'c' col, c value
from yourtable
Se SQL Fiddle with Demo .
Dette kan også gøres ved at bruge en CROSS JOIN
:
select t.id,
c.col,
case c.col
when 'a' then a
when 'b' then b
when 'c' then c
end as data
from yourtable t
cross join
(
select 'a' as col
union all select 'b'
union all select 'c'
) c