すべてのソースIDを一度に実行できます:
select source_id
sum(case when plateCategoryId = 3 then 1 else 0 end) as TotalNewCount,
sum(case when plateCategoryId = 4 then 1 else 0 end) as TotalOldCount
from event
group by source_id;
where
を使用する (group by
の前 )ソースIDを制限する場合。
注:上記はVerticaとMySQLの両方で機能し、標準SQLであることがどのデータベースでも機能するはずです。