इस क्वेरी को आज़माएं (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;
संपादित करें:
आप पैरामीटर को generate_series()
. में बदलकर आसानी से रेंज को एडजस्ट कर सकते हैं . ranges
. को सुनिश्चित करने के लिए निम्नलिखित निर्माण का उपयोग करना संभव है हमेशा आपके स्कोर को कवर करेगा:
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))
ranges
. के लिए सीटीई।