7 lines
134 B
SQL
7 lines
134 B
SQL
select
|
|
floor(elo_rating / 50) * 50 as bucket,
|
|
count(*) as count
|
|
from {{ elo_schema }}.ratings
|
|
group by bucket
|
|
order by bucket
|