PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Grouped LIMIT dans PostgreSQL :afficher les N premières lignes pour chaque groupe ?

Nouvelle solution (PostgreSQL 8.4)

SELECT
  * 
FROM (
  SELECT
    ROW_NUMBER() OVER (PARTITION BY section_id ORDER BY name) AS r,
    t.*
  FROM
    xxx t) x
WHERE
  x.r <= 2;