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

Crie json com valores de coluna como chaves de objeto


Se você estiver no 9.4, poderá fazer o seguinte:
$ select json_object_agg("name", "value") from data_table;
           json_object_agg
----------------------------------------------
{ "key_1" : "value_1", "key_2" : "value_2" }