sql >> Base de Datos >  >> RDS >> PostgreSQL

¿Cómo creo particiones de ventana con nombre (alias) en PostgreSQL?

La respuesta estaba en realidad en SELECT documento:

Aquí hay un ejemplo,

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