我有一個表PostgreSQL表以JSON
key | value
-----+-------
a | "foo"
b | "bar"
我怎樣才能得到結果
{"a": "foo", "b": "bar"}
它不
select array_to_json(array_agg(t)) from table t; -- I get [{"key": "a", "value": "foo"}, {"key": "b", "value": "bar"}]
你能幫助我工作嗎?
http://dba.stackexchange.com/questions/90482/export-postgres-table-as-json – svenhornberg
@fuubah不是同一個問題。在這個問題中,表格數據將與列名一起輸出。這裏列名不重要,但是表中的數據。 –
可能相關:http://stackoverflow.com/questions/20069143/postgres-inverse-of-json-each – dhke