Say, we have a table:
CREATE TABLE place (
place_id serial primary key
, place text
, cat_id int);
Test setup on sqlfiddle.
You would profit from an index on category like demonstrated in the setup.
Basically, I see two different ways:
WITH x AS (
SELECT *, row_number() OVER (PARTITION BY category) AS rn
FROM place
WHERE category IN (1,2,3,4)
)
SELECT place_id, place, category
FROM x
ORDER BY rn
LIMIT 100;
- Besides being rather elegant, the only part where this query gets longer with more categories is the
IN clause.
- No need to calculate the share for each
category, that happens automatically.
- If there are fewer rows for a category than its share would be, the rest is filled with the other categories in equal shares.
(SELECT * FROM place WHERE category = 1 LIMIT 25)
UNION ALL
(SELECT * FROM place WHERE category = 2 LIMIT 25)
UNION ALL
(SELECT * FROM place WHERE category = 3 LIMIT 25)
UNION ALL
(SELECT * FROM place WHERE category = 4 LIMIT 25);
- This is primitive and very fast, but gets longish (though not slow) for many categories.
- Use
UNION ALL, not UNION.
- Parenthesis around each leg of the
UNION query are needed to apply LIMIT.
- You need to calculate the share for each category, and decide how to split fractional shares.
- If there are fewer rows for a category than its share would be, you get fewer rows out of the query.
UNION ALLof four subqueries, each withLIMITs. That won't be pretty as the number of requested categories grows, though. – Craig Ringer Nov 19 '12 at 13:06