首页 > 解决方案 > 如何将数组 json 列中的值提取到 Postgresql 中的多行中?

问题描述

如何从ranges列中的 json 数组中提取值作为多行 Postgresq?

CREATE TABLE test_table (
  id INTEGER, 
  ranges jsonb
);

INSERT INTO test_table(id, ranges) VALUES
(1,'[{"End": 100, "Start": 1}, {"End": 1000, "Start": 101}]'),
(2,'[{"End": 2000, "Start": 1001}, {"End": 2002, "Start": 2001}]')
;

预期结果:

开始 结尾
1 100
101 1000
1001 2000
2001年 2002年

标签: sqljsonpostgresqljsonb

解决方案


您可以jsonb_to_recordset为此使用功能:

SELECT ranges."Start",
       ranges."End"
FROM   test_table,
       jsonb_to_recordset(test_table.ranges) AS ranges("End" int, "Start" int)

http://www.sqlfiddle.com/#!17/22d62/10


推荐阅读