PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come aggiungere una chiave a un valore di matrice JSON?

Mi piace @Abelisto ha commentato , usa json_build_object() (o jsonb_build_object() ) per allegare una chiave al tuo valore.
E il più semplice json_agg(t) (o jsonb_agg(t) ) invece di array_to_json(array_agg(t)) :

SELECT json_build_object('Locations', json_agg(t))
FROM  (
   SELECT DISTINCT ON (city, state)
          latitudes, longitudes, city, state
   FROM   zips
   WHERE  city ILIKE 'ORL%'
   ORDER  by city, state, ziptype DESC
   LIMIT  10
   ) t;