2012-05-15 14 views
11

Supponi uno scenario simile a questo question. Voglio ottenere i seguenti risultati:sql - raggruppa in intervalli per includere intervalli senza valori

score range | number of occurrences 
------------------------------------- 
    0-9  |  11 
    10-19  |  14 
    20-29  |   3 
    ...  |  ... 

E posso utilizzare la risposta selezionata come una soluzione:

select t.range as [score range], count(*) as [number of occurences] 
from (
    select case 
    when score between 0 and 9 then ' 0- 9' 
    when score between 10 and 19 then '10-19' 
    else '20-99' end as range 
    from scores) t 
group by t.range 

Come vi posso assicurare che la gamma punteggio di 30-39 sarà visualizzato anche quando non ci sono risultati su tale intervallo?

+0

proprio una risposta alla tua domanda, ma non perché fallo sul codice? –

+0

Una tabella di gamma fittizia, o andare con il consiglio di Ben Lee ... – Wrikken

+0

@BenLee Questo è quello che sto facendo in questo momento. ma mi piace mantenere tutta la logica insieme – dcarneiro

risposta

18

Prova questa ricerca (anche su 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; 

EDIT:

È possibile regolare facilmente l'intervallo modificando i parametri su generate_series(). E 'possibile utilizzare il seguente costrutto per assicurarsi ranges sarà sempre coprire i tuoi punteggi:

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)) 

per il ranges CTE.

1

Non si può così, ma se si aggiungono tabella derivata con le gamme cose diventano possibili:

select ranges.range, count(scores.score) as [number of occurences] 
    from 
    (
    select 0 minRange, 9 maxRange, '0-9' range 
    union all 
    select 10, 19, '10-19' 
    union all 
    select 20, 29, '20-29' 
) ranges 
    left join scores 
    on scores.score between ranges.minRange and ranges.maxRange 
group by ranges.range 

Non sono sicuro sulla sintassi di PostgreSQL però.

EDIT: Hai il diritto di sintassi:

select ranges."range", count(scores.score) as "number of occurences" 
    from 
    (
    select 0 minRange, 9 maxRange, '0-9' "range" 
    union all 
    select 10, 19, '10-19' 
    union all 
    select 20, 29, '20-29' 
) as ranges 
    left join scores 
    on scores.score between ranges.minRange and ranges.maxRange 
group by ranges.range 
0
select r.range as [score range], count(*) as [number of occurences] 
from 
    (
    select ' 0- 9' as range, 9 as endrange 
    union all select '10-19',19 
    union all select '20-29',29 
    union all select '30-39',39 
    union all select '40-49',49 
    union all select '50-59',59 
    union all select '60-69',69 
    union all select '70-79',79 
    union all select '80-89',89 
    union all select '90-99',99 
    ) as r 
left join scores s on 
    r.endrange = case 
    when s.score > 90 then 99 
    when s.score > 80 then 89 
    when s.score > 70 then 79 
    when s.score > 60 then 69 
    when s.score > 50 then 59 
    when s.score > 40 then 49 
    when s.score > 30 then 39 
    when s.score > 20 then 29 
    when s.score > 10 then 19 
    when s.score > 0 then 9 
    end 
group by r.range 
0

In realtà, la soluzione più semplice è questo (per 2 numeri a due cifre):

select substr(rssi::text, 0, 2) || '0-' || substr(rssi::text, 0, 2) || '9' as range, count(*) 
from sensor_stations 
group by substr(rssi::text, 0, 2) 
order by count(*) desc; 

L'output sarà simile a questo:

range | count 
-------+------- 
10-19 | 3414 
30-39 | 1363 
20-29 | 1269 
40-49 | 769 
50-59 | 294 
60-69 | 106 
70-79 |  5 
(7 rows) 
Non
Problemi correlati