PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie erstelle ich benannte Fensterpartitionen (Aliase) in PostgreSQL?

Die Antwort war eigentlich im SELECT doc:

Hier ist ein Beispiel,

SELECT first_value(vin) OVER w,
  first_value(make) OVER w
FROM inventory.vehicles
WHERE lot_Id = 9999
  AND make is not null
WINDOW w AS ( PARTITION by vin );