web-dev-qa-db-fra.com

Insérer un tableau de JSON dans la table Postgres

PARTIE 1:

J'utilise Postgres 9.5 et j'essaie de comprendre comment INSÉRER dans une table postgres en utilisant un tableau de JSON. J'ai créé un tableau avec les commandes suivantes:

CREATE TABLE inputtable (
data_point_id SERIAL PRIMARY KEY NOT NULL,
chart_id INTEGER NOT NULL,
user_id INTEGER NOT NULL,
properties jsonb NOT NULL
);

Le format de données json ressemble à ceci:

[
    { col1: a, col2: 5, col3: 1, col4: one},
    { col1: b, col2: 6, col3: 2, col4: two},
    { col1: c, col2: 7, col3: 3, col4: three}
]

En raison de certaines modifications, je dois maintenant pouvoir insérer un objet json par ligne en fonction de user_id. En fin de compte, je veux que la sortie ressemble à ceci:

data_point_id  | chart_id | user_id |  properties
---------------+----------+----------+--------------
    1          |    1     |     1    | { "col1": "a", "col2": 1, "col3": 1, "col4": "one"}
    2          |    1     |     1    | { "col1": "b", "col2": 2, "col3": 2, "col4": "two"}
    3          |    1     |     1    | { "col1": "c", "col2": 3, "col3": 3, "col4": "three"}

J'ai essayé d'insérer les données dans la table en utilisant unnest, où:

INSERT INTO inputtable (user_id, chart_id, properties) 
    SELECT (1, 1, unnest('{ "col1": "a", "col2": 1, "col3": 1, "col4": "one"},{ "col1": "b", "col2": 2, "col3": 2, "col4": "two"},{ "col1": "c", "col2": 3, "col3": 3, "col4": "three"}')::json)

mais j'obtiens une erreur de type ERROR: could not determine polymorphic type because input has type "unknown".

PARTIE 2:

J'aimerais également savoir comment un tableau comme celui-ci peut être mis à jour. Par exemple, j'apporte des modifications au point de données, au format JSON, et je souhaite modifier les propriétés, et j'attends une sortie de:

data_point_id  | chart_id | user_id  |  properties
---------------+----------+----------+--------------
    1          |    1     |     1    | { "col1": "a", "col2": 6, "col3": 7, "col4": "eight"}
    2          |    1     |     1    | { "col1": "b", "col2": 10, "col3": 11, "col4": "twelve"}
    3          |    1     |     1    | { "col1": "c", "col2": 3, "col3": 3, "col4": "new"} 

Utiliser des données comme ceci:

[
    { col1: a, col2: 6, col3: 7, col4: eight},
    { col1: b, col2: 10, col3: 11, col4: twelve},
    { col1: c, col2: 3, col3: 3, col4: new}
]

Comment cela peut-il être accompli? Je pense que la question de la partie 2 peut être résolue par jsonb_populate_recordset, mais je ne suis pas sûr. L'utilisation de Postgres pour JSON est nouvelle pour moi, mais elle a l'air très puissante et j'apprécie l'aide pour m'aider à comprendre cela!

4
unseen_damage

PARTIE 1 - INSERTION

Vous n'avez pas besoin d'utiliser unnest() mais jsonb_array_elements() et d'ajouter des crochets à la structure de données JSON. Je vous suggère d'utiliser un site Web de validation JSON comme JSONlint pour tester l'exactitude de vos données JSON.

Ce code insère 3 nouveaux enregistrements dans inputtable:

WITH json_array AS (
    SELECT 1 AS user_id, 
           2 AS chart_id,
           jsonb_array_elements('
               [
                 {
                    "col1": "a",
                    "col2": 1,
                    "col3": 1,
                    "col4": "one"
                 }, {
                    "col1": "b",
                    "col2": 2,
                    "col3": 2,
                    "col4": "two"
                 }, {
                    "col1": "c",
                    "col2": 3,
                    "col3": 3,
                    "col4": "three"
                }
               ]'::jsonb) AS properties
)
INSERT INTO inputtable (user_id, chart_id, properties) 
SELECT * FROM json_array

PARTIE 2 - MISE À JOUR

Pour mettre à jour, vous devez spécifier data_point_id valeurs, il faut donc les connaître a priori .

Cela fonctionne parfaitement, mais il existe probablement d'autres solutions naïves :

WITH update_table AS(
   SELECT unnest(ARRAY[1, 2, 3]) AS data_point_id,
          jsonb_array_elements('
            [
              {
                "col1": "a",
                "col2": 6,
                "col3": 7,
                "col4": "eight"
              }, {
                "col1": "b",
                "col2": 10,
                "col3": 11,
                "col4": "twelve"
              }, {
                "col1": "c",
                "col2": 3,
                "col3": 3,
                "col4": "new"
              }
           ]'::jsonb) AS properties 
    FROM inputtable
)
UPDATE inputtable 
SET properties = update_table.properties
FROM update_table
WHERE inputtable.data_point_id = update_table.data_point_id
5
pietrop