Selon la version de mysql
que vous utilisez, voici une approche établissant un row_number
par groupe, puis en utilisant conditional aggregation
regroupés par ce numéro de ligne :
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
Puisque vous utilisez une ancienne version de mysql
, vous devrez utiliser des user-defined variables
pour établir le numéro de ligne. Le reste fonctionne alors de la même manière. Voici un exemple :
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