Mysql
 sql >> Database >  >> RDS >> Mysql

Mysql Converti colonna in riga (tabella pivot)

Quello che devi fare è prima annullare il pivot dei dati e quindi ruotarli. Ma sfortunatamente MySQL non ha queste funzioni, quindi dovrai replicarle usando un UNION ALL query per l'unpivot e una funzione aggregata con un CASE per il perno.

L'unpivot o UNION ALL piece prende i dati da col1, col2, ecc. e li trasforma in più righe:

select id, month, col1 value, 'col1' descrip
from yourtable
union all
select id, month, col2 value, 'col2' descrip
from yourtable
union all
select id, month, col3 value, 'col3' descrip
from yourtable
union all
select id, month, col4 value, 'col4' descrip
from yourtable

Vedi SQL Fiddle con demo .

Risultato:

|  ID | MONTH |  VALUE | DESCRIP |
----------------------------------
| 101 |   Jan |      A |    col1 |
| 102 |   feb |      C |    col1 |
| 101 |   Jan |      B |    col2 |
| 102 |   feb |      A |    col2 |
| 101 |   Jan | (null) |    col3 |
| 102 |   feb |      G |    col3 |
| 101 |   Jan |      B |    col4 |
| 102 |   feb |      E |    col4 |

Quindi avvolgilo in una sottoquery per applicare l'aggregato e il CASE per convertirlo nel formato desiderato:

select descrip, 
  max(case when month = 'jan' then value else 0 end) jan,
  max(case when month = 'feb' then value else 0 end) feb
from
(
  select id, month, col1 value, 'col1' descrip
  from yourtable
  union all
  select id, month, col2 value, 'col2' descrip
  from yourtable
  union all
  select id, month, col3 value, 'col3' descrip
  from yourtable
  union all
  select id, month, col4 value, 'col4' descrip
  from yourtable
) src
group by descrip

Vedi SQL Fiddle con demo

Il risultato è:

| DESCRIP | JAN | FEB |
-----------------------
|    col1 |   A |   C |
|    col2 |   B |   A |
|    col3 |   0 |   G |
|    col4 |   B |   E |