在PostgreSQL中合并两个JSON对象

在PostgreSQL中合并两个JSON对象

本文介绍了在PostgreSQL中合并两个JSON对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在PostgreSQL 9.4表中有两个JSON行:

I have two JSON rows in a PostgreSQL 9.4 table:

      the_column
----------------------
 {"evens": [2, 4, 6]}
 {"odds": [1, 3, 5]}

我想将所有行合并为一个JSON对象。 (它适用于任何数量的行。)

I want to combine all of the rows into one JSON object. (It should work for any number of rows.)

所需的输出:

{ evens:[2,4,6], odds:[1,3,5]}

推荐答案

使用获取数组:

SELECT json_agg(source_column) AS the_column
FROM   tbl;

LATERAL 加入并来组装元素:

Or json_each() in a LATERAL join and json_object_agg() to assemble elements:

SELECT json_object_agg(key, value) AS the_column
FROM   tbl, json_each(data);

这篇关于在PostgreSQL中合并两个JSON对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 11:20