Stai cercando di spostare i dati. MySQL non ha una funzione unpivot, quindi dovrai usare un UNION ALL
query per convertire le colonne in righe:
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
Vedi SQL Fiddle con demo .
Questo può essere fatto anche usando un 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
Vedi SQL Fiddle con demo