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

tabella pivot mysql con valori di stringa

A seconda della versione di mysql stai usando, ecco un approccio che stabilisce un row_number per gruppo, quindi utilizzando conditional aggregation raggruppati per quel numero di riga:

select 
    rn, 
    max(case when stuff = 'bag' then name end) 'bag',
    max(case when stuff = 'book' then name end) 'book',
    max(case when stuff = 'shoes' then name end) 'shoes' 
from (
  select *, row_number() over (partition by stuff order by name) rn
  from stuff_table
) t
group by rn

Poiché stai utilizzando una versione precedente di mysql , dovrai utilizzare user-defined variables per stabilire il numero di riga. Il resto poi funziona lo stesso. Ecco un esempio:

select 
    rn, 
    max(case when stuff = 'bag' then name end) 'bag',
    max(case when stuff = 'book' then name end) 'book',
    max(case when stuff = 'shoes' then name end) 'shoes' 
from (
  select *, 
  ( case stuff 
         when @curStuff
         then @curRow := @curRow + 1 
         else @curRow := 1 and @curStuff := stuff 
   end
  ) + 1 AS rn
  from stuff_table, (select @curRow := 0, @curStuff := '') r
  order by stuff
) t
group by rn