Kerrekが説明したものから拡張されたオプションで、ケース/時期に基づいてグループ化できます
select
case when price >= 0 and price <= 10 then ' 0 - 10'
when price > 10 and price <= 50 then ' 10+ - 50'
when price > 50 and price <= 100 then ' 50+ - 100'
else 'over 100'
end PriceRange,
count(*) as TotalWithinRange
from
YourTable
group by 1
ここで、「group by 1」は、selectステートメントの序数列を表します...この場合、ケース/whenはTotalWithinRangeです。