sql >> Base de Datos >  >> RDS >> PostgreSQL

sql - agrupar por rangos para incluir rangos sin valores

Pruebe esta consulta (también en SQL Fiddle ):

WITH ranges AS (
    SELECT (ten*10)::text||'-'||(ten*10+9)::text AS range,
           ten*10 AS r_min, ten*10+9 AS r_max
      FROM generate_series(0,9) AS t(ten))
SELECT r.range, count(s.*)
  FROM ranges r
  LEFT JOIN scores s ON s.score BETWEEN r.r_min AND r.r_max
 GROUP BY r.range
 ORDER BY r.range;

EDITAR:

Puede ajustar fácilmente el rango cambiando los parámetros a generate_series() . Es posible usar la siguiente construcción para asegurarse de que ranges siempre cubrirá tus puntuaciones:

SELECT (ten*10)::text||'-'||(ten*10+9)::text AS range,
       ten*10 AS r_min, ten*10+9 AS r_max
  FROM generate_series(0,(SELECT max(score)/10 FROM scores)) AS t(ten))

para los ranges CTE.