PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Postgres:obtenha valores mínimos, máximos e agregados em uma seleção

SELECT array_agg(DISTINCT type) AS types,
       MIN(value) AS min,
       MAX(value) AS max
FROM your_table