duanhuiuw12555 2014-06-09 04:55
浏览 616
已采纳

将jsonb列值转换为PostgreSQL中的多个列

lets say i have a table in PostgreSQL with the following columns:

CREATE TABLE sample
(
id int,
jsonb jsonb,
date date
)

and i inserted this two rows:

INSERT INTO sample
(id,jsonb,date)
VALUES
(1, '{"a":"a","b":"b"}', '2014/01/06'),
(2, '{"a":"a","b":"b"}', '2014/01/06')

i want to convert the above rows into this(doing a select in PostgreSQL):

1,"a","b",'2014/01/06'
2,"a","b",'2014/01/06'

to call in php json_encode(rows from sample)

and get something like this:

[{"id":1,"a":"a","b":"b","date":"2014/01/06"},
{"id":2,"a":"a","b":"b","date":"2014/01/06"}]

but now if i call in php json_encode(rows from sample) i get this:

[{"id":1,"jsonb":"{"a":"a","b":"b"}","date":"2014/01/06"},
{"id":2,"jsonb":"{"a":"a","b":"b"}","date":"2014/01/06"}]

hope someone can help me to handle that, thanks to everyone

  • 写回答

1条回答 默认 最新

  • du6333137 2014-06-09 05:21
    关注

    It is simple in 9.4 (used LATERAL join and jsonb functions):

        postgres=# SELECT * 
                      FROM sample, jsonb_to_record(jsonb, true) AS x(a text, b text);
         id |            jsonb             |    date     |  a   |   b    
        ----+------------------------------+-------------+------+--------
          1 | {"a": "a", "b": "b"}         | 2014-01-06  | a    | b
          2 | {"a": "a", "b": "b"}         | 2014-01-06  | a    | b
          3 | {"a": "Ahoj", "b": "Nazdar"} | 2014-01-06  | Ahoj | Nazdar
        (3 rows)
    

    exact result:

    postgres=# SELECT id, a, b, date 
                   FROM sample, jsonb_to_record(jsonb, true) AS x(a text, b text);
     id |  a   |   b    |    date    
    ----+------+--------+------------
      1 | a    | b      | 2014-01-06
      2 | a    | b      | 2014-01-06
      3 | Ahoj | Nazdar | 2014-01-06
    (3 rows)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序