Files
house-elo-ranking/backend/app/sql/elo_distribution.sql
2026-03-06 14:51:26 +00:00

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