sql >> Database teknologi >  >> RDS >> PostgreSQL

konverter jsonb kolonneværdi til flere kolonner i PostgreSQL

Det er enkelt i 9.4 (brugte LATERAL join- og jsonb-funktioner):

    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)

nøjagtigt resultat:

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)



  1. sqlalchemy postgresql Er Null-indeks

  2. MariaDB starter ikke:Plugin 'FEEDBACK' er deaktiveret.

  3. To foreach-udsagn med kun én MySQL-forespørgsel?

  4. MySQL TILFØJ KOLONNE