How to import json table into PostgreSQL table?Mixed search in multiple columnsPostgresql: Aggregate objects...

When was drinking water recognized as crucial in marathon running?

Analog Mute Circuit - Simplest Solution

What happened to QGIS 2.x LTR?

How do you say "powers of ten"?

I can't die. Who am I?

Graphing random points on the XY-plane

How to evaluate the limit where something is raised to a power of x?

Don't know what I’m looking for regarding removable HDDs?

Do higher etale homotopy groups of spectrum of a field always vanish?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

Make me a metasequence

Is divide-by-zero a security vulnerability?

Can a space-faring robot still function over a billion years?

Is there a full canon version of Tyrion's jackass/honeycomb joke?

Are paired adjectives bad style?

Why is working on the same position for more than 15 years not a red flag?

Can we carry rice to Japan?

Is there a math equivalent to the conditional ternary operator?

Heating basement floor with water heater

Why do members of Congress in committee hearings ask witnesses the same question multiple times?

Dystopian novel where telepathic humans live under a dome

What am I? I am in theaters and computer programs

VAT refund for a conference ticket in Sweden

Is the withholding of funding notice allowed?



How to import json table into PostgreSQL table?


Mixed search in multiple columnsPostgresql: Aggregate objects into an (json) array (subquery issues)Structure for storing table data, lists, text, pictures within PostgreSQL JSON fieldPostgresql json column to viewPostgreSQL bug with JSON type?How to insert nested JSON arrays into a table?Multiple rows into jsonPostgresql 9.5 JSON problemsJSON Query in PostgreSQLHow to Insert JSON data to BYTEA column in the table in POSTGRESQL?













0















I'm trying to import some tables into a PostgreSQL db that have been stored as json files. Example data:



[{
"token": "a978f9793a594d11860e9cf7962996d7",
"name": "vehicle.moving",
"description": "Vehicle is moving."
},
{
"token": "95e38bf08c2842f39f2d64ba8152b265",
"name": "vehicle.stopped",
"description": "Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move."
}]


Would like the result to look like:



token                            | name            | description
---------------------------------+-----------------+--------------------
a978f9793a594d11860e9cf7962996d7 | vehicle.moving | Vehicle is moving.
95e38bf08c2842f39f2d64ba8152b265 | vehicle.stopped | Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move.


My SQL currently looks like this:



set content `type "F:Datasetsattribute.json"`
insert into attribute select * from jsonb_array_elements(:'content');


Which just adds rows of quoted json to my table.
Have been bashing at this all day (SQL rookie) and would be very grateful for help.










share|improve this question







New contributor




tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    I'm trying to import some tables into a PostgreSQL db that have been stored as json files. Example data:



    [{
    "token": "a978f9793a594d11860e9cf7962996d7",
    "name": "vehicle.moving",
    "description": "Vehicle is moving."
    },
    {
    "token": "95e38bf08c2842f39f2d64ba8152b265",
    "name": "vehicle.stopped",
    "description": "Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move."
    }]


    Would like the result to look like:



    token                            | name            | description
    ---------------------------------+-----------------+--------------------
    a978f9793a594d11860e9cf7962996d7 | vehicle.moving | Vehicle is moving.
    95e38bf08c2842f39f2d64ba8152b265 | vehicle.stopped | Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move.


    My SQL currently looks like this:



    set content `type "F:Datasetsattribute.json"`
    insert into attribute select * from jsonb_array_elements(:'content');


    Which just adds rows of quoted json to my table.
    Have been bashing at this all day (SQL rookie) and would be very grateful for help.










    share|improve this question







    New contributor




    tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I'm trying to import some tables into a PostgreSQL db that have been stored as json files. Example data:



      [{
      "token": "a978f9793a594d11860e9cf7962996d7",
      "name": "vehicle.moving",
      "description": "Vehicle is moving."
      },
      {
      "token": "95e38bf08c2842f39f2d64ba8152b265",
      "name": "vehicle.stopped",
      "description": "Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move."
      }]


      Would like the result to look like:



      token                            | name            | description
      ---------------------------------+-----------------+--------------------
      a978f9793a594d11860e9cf7962996d7 | vehicle.moving | Vehicle is moving.
      95e38bf08c2842f39f2d64ba8152b265 | vehicle.stopped | Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move.


      My SQL currently looks like this:



      set content `type "F:Datasetsattribute.json"`
      insert into attribute select * from jsonb_array_elements(:'content');


      Which just adds rows of quoted json to my table.
      Have been bashing at this all day (SQL rookie) and would be very grateful for help.










      share|improve this question







      New contributor




      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I'm trying to import some tables into a PostgreSQL db that have been stored as json files. Example data:



      [{
      "token": "a978f9793a594d11860e9cf7962996d7",
      "name": "vehicle.moving",
      "description": "Vehicle is moving."
      },
      {
      "token": "95e38bf08c2842f39f2d64ba8152b265",
      "name": "vehicle.stopped",
      "description": "Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move."
      }]


      Would like the result to look like:



      token                            | name            | description
      ---------------------------------+-----------------+--------------------
      a978f9793a594d11860e9cf7962996d7 | vehicle.moving | Vehicle is moving.
      95e38bf08c2842f39f2d64ba8152b265 | vehicle.stopped | Vehicle, with a driver/rider in/on it, is currently stationary but has an intent to move.


      My SQL currently looks like this:



      set content `type "F:Datasetsattribute.json"`
      insert into attribute select * from jsonb_array_elements(:'content');


      Which just adds rows of quoted json to my table.
      Have been bashing at this all day (SQL rookie) and would be very grateful for help.







      json






      share|improve this question







      New contributor




      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 15 mins ago









      tinyMindtinyMind

      11




      11




      New contributor




      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      tinyMind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "182"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          tinyMind is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f231410%2fhow-to-import-json-table-into-postgresql-table%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          tinyMind is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          tinyMind is a new contributor. Be nice, and check out our Code of Conduct.













          tinyMind is a new contributor. Be nice, and check out our Code of Conduct.












          tinyMind is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Database Administrators Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f231410%2fhow-to-import-json-table-into-postgresql-table%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Armoriale delle famiglie italiane (Car) Indice Armi | Bibliografia | Menu di navigazioneBlasone...

          Why does this relation fail symmetry and transitivity properties?Properties of Relations. Reflexive,...

          why typing a variable (or expression) prints the value to stdout?Calling a function of a module by using its...