W zależności od wersji mysql
używasz, oto jedno podejście do ustanowienia row_number
na grupę, a następnie przy użyciu conditional aggregation
pogrupowane według tego numeru wiersza:
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
Ponieważ używasz starszej wersji mysql
, musisz użyć user-defined variables
aby ustalić numer wiersza. Reszta działa wtedy tak samo. Oto przykład:
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