Dependiendo de la versión de mysql
está utilizando, aquí hay un enfoque que establece un row_number
por grupo, luego usando conditional aggregation
agrupados por ese número de fila:
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
Dado que está utilizando una versión anterior de mysql
, deberá usar user-defined variables
para establecer el número de fila. El resto entonces funciona igual. He aquí un ejemplo:
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