Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

tabela dinâmica mysql com valores de string


Dependendo da versão do mysql você está usando, aqui está uma abordagem que estabelece um row_number por grupo e, em seguida, usando conditional aggregation agrupados por esse número de linha:
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

Como você está usando uma versão mais antiga do mysql , você precisará usar user-defined variables para estabelecer o número da linha. O resto então funciona da mesma forma. Aqui está um exemplo:
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