Execute a JOIN N times - possible in Postgres?












0














Let's say I have a series of similar subqueries, and I want to join those subqueries N times.



For example, something like this:



SELECT
*
FROM
records
FOR i IN 1..N LOOP
JOIN (SELECT * FROM records where records.id = i) as i::text
END LOOP


... which I know isn't valid. Is there a way to accomplish this?










share|improve this question






















  • Please Edit your question and add some sample data and the expected output based on that data. Formatted text please, no screen shots. edit your question - do not post code or additional information in comments.
    – a_horse_with_no_name
    Nov 20 '18 at 21:48
















0














Let's say I have a series of similar subqueries, and I want to join those subqueries N times.



For example, something like this:



SELECT
*
FROM
records
FOR i IN 1..N LOOP
JOIN (SELECT * FROM records where records.id = i) as i::text
END LOOP


... which I know isn't valid. Is there a way to accomplish this?










share|improve this question






















  • Please Edit your question and add some sample data and the expected output based on that data. Formatted text please, no screen shots. edit your question - do not post code or additional information in comments.
    – a_horse_with_no_name
    Nov 20 '18 at 21:48














0












0








0







Let's say I have a series of similar subqueries, and I want to join those subqueries N times.



For example, something like this:



SELECT
*
FROM
records
FOR i IN 1..N LOOP
JOIN (SELECT * FROM records where records.id = i) as i::text
END LOOP


... which I know isn't valid. Is there a way to accomplish this?










share|improve this question













Let's say I have a series of similar subqueries, and I want to join those subqueries N times.



For example, something like this:



SELECT
*
FROM
records
FOR i IN 1..N LOOP
JOIN (SELECT * FROM records where records.id = i) as i::text
END LOOP


... which I know isn't valid. Is there a way to accomplish this?







postgresql loops join






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 19:43









Greg Matthew Crossley

340314




340314












  • Please Edit your question and add some sample data and the expected output based on that data. Formatted text please, no screen shots. edit your question - do not post code or additional information in comments.
    – a_horse_with_no_name
    Nov 20 '18 at 21:48


















  • Please Edit your question and add some sample data and the expected output based on that data. Formatted text please, no screen shots. edit your question - do not post code or additional information in comments.
    – a_horse_with_no_name
    Nov 20 '18 at 21:48
















Please Edit your question and add some sample data and the expected output based on that data. Formatted text please, no screen shots. edit your question - do not post code or additional information in comments.
– a_horse_with_no_name
Nov 20 '18 at 21:48




Please Edit your question and add some sample data and the expected output based on that data. Formatted text please, no screen shots. edit your question - do not post code or additional information in comments.
– a_horse_with_no_name
Nov 20 '18 at 21:48












2 Answers
2






active

oldest

votes


















0














Yes, you can do this using a dynamic query:



DO $$
DECLARE
r record;
sql text;
i integer;
BEGIN
sql := 'SELECT * from records';

FOR i IN 1..5
LOOP
sql := sql || ' JOIN (SELECT * FROM records where records.id = ' || i || ')';

END LOOP;
RAISE INFO 'Query: %', sql;

EXECUTE sql;
END$$;





share|improve this answer





























    0














    More simply:



    SELECT * from records where id BETWEEN 1 and 10;


    If you're doing something more complex you could use generate_series to generate your 1..n ids (n = 10 in this example):



    SELECT *
    FROM records r
    JOIN (SELECT generate_series(1, 10) id) s
    ON r.id = s.id;





    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      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: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      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
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53400441%2fexecute-a-join-n-times-possible-in-postgres%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Yes, you can do this using a dynamic query:



      DO $$
      DECLARE
      r record;
      sql text;
      i integer;
      BEGIN
      sql := 'SELECT * from records';

      FOR i IN 1..5
      LOOP
      sql := sql || ' JOIN (SELECT * FROM records where records.id = ' || i || ')';

      END LOOP;
      RAISE INFO 'Query: %', sql;

      EXECUTE sql;
      END$$;





      share|improve this answer


























        0














        Yes, you can do this using a dynamic query:



        DO $$
        DECLARE
        r record;
        sql text;
        i integer;
        BEGIN
        sql := 'SELECT * from records';

        FOR i IN 1..5
        LOOP
        sql := sql || ' JOIN (SELECT * FROM records where records.id = ' || i || ')';

        END LOOP;
        RAISE INFO 'Query: %', sql;

        EXECUTE sql;
        END$$;





        share|improve this answer
























          0












          0








          0






          Yes, you can do this using a dynamic query:



          DO $$
          DECLARE
          r record;
          sql text;
          i integer;
          BEGIN
          sql := 'SELECT * from records';

          FOR i IN 1..5
          LOOP
          sql := sql || ' JOIN (SELECT * FROM records where records.id = ' || i || ')';

          END LOOP;
          RAISE INFO 'Query: %', sql;

          EXECUTE sql;
          END$$;





          share|improve this answer












          Yes, you can do this using a dynamic query:



          DO $$
          DECLARE
          r record;
          sql text;
          i integer;
          BEGIN
          sql := 'SELECT * from records';

          FOR i IN 1..5
          LOOP
          sql := sql || ' JOIN (SELECT * FROM records where records.id = ' || i || ')';

          END LOOP;
          RAISE INFO 'Query: %', sql;

          EXECUTE sql;
          END$$;






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 20 '18 at 19:55









          Julia Leder

          51127




          51127

























              0














              More simply:



              SELECT * from records where id BETWEEN 1 and 10;


              If you're doing something more complex you could use generate_series to generate your 1..n ids (n = 10 in this example):



              SELECT *
              FROM records r
              JOIN (SELECT generate_series(1, 10) id) s
              ON r.id = s.id;





              share|improve this answer




























                0














                More simply:



                SELECT * from records where id BETWEEN 1 and 10;


                If you're doing something more complex you could use generate_series to generate your 1..n ids (n = 10 in this example):



                SELECT *
                FROM records r
                JOIN (SELECT generate_series(1, 10) id) s
                ON r.id = s.id;





                share|improve this answer


























                  0












                  0








                  0






                  More simply:



                  SELECT * from records where id BETWEEN 1 and 10;


                  If you're doing something more complex you could use generate_series to generate your 1..n ids (n = 10 in this example):



                  SELECT *
                  FROM records r
                  JOIN (SELECT generate_series(1, 10) id) s
                  ON r.id = s.id;





                  share|improve this answer














                  More simply:



                  SELECT * from records where id BETWEEN 1 and 10;


                  If you're doing something more complex you could use generate_series to generate your 1..n ids (n = 10 in this example):



                  SELECT *
                  FROM records r
                  JOIN (SELECT generate_series(1, 10) id) s
                  ON r.id = s.id;






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 20 '18 at 21:45

























                  answered Nov 20 '18 at 21:39









                  teppic

                  5,16911826




                  5,16911826






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • 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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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%2fstackoverflow.com%2fquestions%2f53400441%2fexecute-a-join-n-times-possible-in-postgres%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

                      Costa Masnaga

                      Fotorealismo

                      Create new schema in PostgreSQL using DBeaver