select batch
, count(case when status=1 then 1 end) status1
, count(case when status=2 then 1 end) status2
, count(case when status=3 then 1 end) status3
from table
group by batch;
Това често се нарича "основна" заявка и аз написах статия за това как да генерирам динамично тези заявки в моя блог .
Версия, използваща DECODE (специфична за Oracle, но по-малко подробна):
select batch
, count(decode(status,1,1)) status1
, count(decode(status,2,1)) status2
, count(decode(status,3,1)) status3
from table
group by batch;