Files
house-elo-ranking/backend/app/sql/elo_distribution.sql
Stijnvandenbroek c908d96921 feat: separate sql
2026-03-06 14:26:20 +00:00

7 lines
130 B
SQL

select
floor(elo_rating / 50) * 50 as bucket,
count(*) as count
from {elo_schema}.ratings
group by bucket
order by bucket