我正在尝试使用postgres查询构建JSON对象。我正在寻找的输出类似于下面的对象。属性“ xxx”和“ yyy”与日期一样来自一列。
{
"xxx": [ "2018-07-26T11:42:04.514Z", "2018-07-26T11:52:04.514Z"],
"yyy": [ "2018-07-26T05:42:09.210Z", "2018-07-26T07:22:04.024Z"]
}
我希望通过与以下查询类似的查询来做到这一点:
SELECT
json_object(
array_agg(name),
array_agg(json_build_array(start_date, end_date)
)
FROM my_table
my_table表大致如下所示:
name | start_date | end_date |
-------------------------------------------------------------
xxx | 2018-07-26T11:42:04.514Z | 2018-07-26T11:52:04.514Z |
yyy | 2018-07-26T05:42:09.210Z | 2018-07-26T07:22:04.024Z |
但是,json_object只接受文本数组,我似乎找不到其他选择。因此,我得到了ERROR: function json_object(text[], json[]) does not exist
。感谢您的阅读!
答案 0 :(得分:2)
使用jsonb_build_array()
和json_object_agg().
select json_object_agg(name, jsonb_build_array(start_date, end_date))
from my_table