Postgres:将JSON列扩展为行

时间:2014-09-22 16:29:48

标签: sql json postgresql

在Postgres 9.3数据库中,我有一个表,其中一列包含JSON,如下例中所示的测试表中所示。

test=# create table things (id serial PRIMARY KEY, details json, other_field text);
CREATE TABLE
test=# \d things
                            Table "public.things"
   Column    |  Type   |                      Modifiers
-------------+---------+-----------------------------------------------------
 id          | integer | not null default nextval('things_id_seq'::regclass)
 details     | json    |
 other_field | text    |
Indexes:
    "things_pkey" PRIMARY KEY, btree (id)

test=# insert into things (details, other_field) 
       values ('[{"json1": 123, "json2": 456},{"json1": 124, "json2": 457}]', 'nonsense');
INSERT 0 1
test=# insert into things (details, other_field) 
       values ('[{"json1": 234, "json2": 567}]', 'piffle');
INSERT 0 1
test=# select * from things;
 id |                           details                           | other_field
----+-------------------------------------------------------------+-------------
  1 | [{"json1": 123, "json2": 456},{"json1": 124, "json2": 457}] | nonsense
  2 | [{"json1": 234, "json2": 567}]                              | piffle
(2 rows)

JSON始终是包含可变数量哈希的数组。每个哈希都具有相同的密钥集。我正在尝试编写一个查询,该查询为JSON数组中的每个条目返回一行,每个哈希键的列和来自things表的id。我希望输出如下:

 thing_id | json1 | json2
----------+-------+-------
        1 |   123 |   456
        1 |   124 |   457
        2 |   234 |   567

即。两行用于JSON数组中包含两个项的条目。是否有可能让Postgres这样做? json_populate_recordset感觉是答案中不可或缺的一部分,但我无法让它同时使用多行。

1 个答案:

答案 0 :(得分:10)

select id,
    (details ->> 'json1')::int as json1,
    (details ->> 'json2')::int as json2
from (
    select id, json_array_elements(details) as details
    from things
) s
;
 id | json1 | json2 
----+-------+-------
  1 |   123 |   456
  1 |   124 |   457
  2 |   234 |   567