PostgreSQL 10: Deleting Orphan Rows in Table A on only IDs existing in Table B?

Find some digits of factorial 17

What is the lore-based reason that the Spectator has the Create Food and Water trait, instead of simply not requiring food and water?

How to deal with an incendiary email that was recalled

Can a person refuse a presidential pardon?

Explain the objections to these measures against human trafficking

Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?

Can we use the stored gravitational potential energy of a building to produce power?

Would a National Army of mercenaries be a feasible idea?

Table formatting top left corner caption

How do you funnel food off a cutting board?

Why is oil called more viscous than water when we slip on oil more than we do on water

Why are the books in the Game of Thrones citadel library shelved spine inwards?

Why did the villain in the first Men in Black movie care about Earth's Cockroaches?

Why would space fleets be aligned?

Why do stocks necessarily drop during a recession?

Why Normality assumption in linear regression

In Linux what happens if 1000 files in a directory are moved to another location while another 300 files were added to the source directory?

How to count the characters of jar files by wc

Incorporating research and background: How much is too much?

How to remove lines through the legend markers in ListPlot?

Can a hotel cancel a confirmed reservation?

Could a phylactery of a lich be a mirror or does it have to be a box?

It took me a lot of time to make this, pls like. (YouTube Comments #1)

Is a debit card dangerous in my situation?



PostgreSQL 10: Deleting Orphan Rows in Table A on only IDs existing in Table B?














0















How do I delete orphan rows in Table A:



+---------+--------+----------+-------+
| ID | option | category | rates |
+---------+--------+----------+-------+
| a | f | null | 2.5 |
+---------+--------+----------+-------+
| a | f | d | 2 |
+---------+--------+----------+-------+
| a | g | e | 3 |
+---------+--------+----------+-------+
| c | g | e | 4 |
+---------+--------+----------+-------+
| d | f | d | 1 |
+---------+--------+----------+-------+


On only IDs existing in Table B (only check IDs a & c, leave d alone):



+---------+--------+----------+-------+
| ID | option | category | rates |
+---------+--------+----------+-------+
| a | f | null | 2.5 |
+---------+--------+----------+-------+
| a | g | e | 3 |
+---------+--------+----------+-------+
| c | g | e | 4 |
+---------+--------+----------+-------+


Result(the second row a,f,d,2 was removed):



+---------+--------+----------+-------+
| ID | option | category | rates |
+---------+--------+----------+-------+
| a | f | null | 2.5 |
+---------+--------+----------+-------+
| a | g | e | 3 |
+---------+--------+----------+-------+
| c | g | e | 4 |
+---------+--------+----------+-------+
| d | f | d | 1 |
+---------+--------+----------+-------+


My thinking is that I should group by ID on Table B to a temp table then loop delete on non matching rows on Table A



Because I'm new to PostgreSQL, can you show me how this can be done? Also, if there's a better way, please let me know as well. Thanks in advance!









share







New contributor




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

























    0















    How do I delete orphan rows in Table A:



    +---------+--------+----------+-------+
    | ID | option | category | rates |
    +---------+--------+----------+-------+
    | a | f | null | 2.5 |
    +---------+--------+----------+-------+
    | a | f | d | 2 |
    +---------+--------+----------+-------+
    | a | g | e | 3 |
    +---------+--------+----------+-------+
    | c | g | e | 4 |
    +---------+--------+----------+-------+
    | d | f | d | 1 |
    +---------+--------+----------+-------+


    On only IDs existing in Table B (only check IDs a & c, leave d alone):



    +---------+--------+----------+-------+
    | ID | option | category | rates |
    +---------+--------+----------+-------+
    | a | f | null | 2.5 |
    +---------+--------+----------+-------+
    | a | g | e | 3 |
    +---------+--------+----------+-------+
    | c | g | e | 4 |
    +---------+--------+----------+-------+


    Result(the second row a,f,d,2 was removed):



    +---------+--------+----------+-------+
    | ID | option | category | rates |
    +---------+--------+----------+-------+
    | a | f | null | 2.5 |
    +---------+--------+----------+-------+
    | a | g | e | 3 |
    +---------+--------+----------+-------+
    | c | g | e | 4 |
    +---------+--------+----------+-------+
    | d | f | d | 1 |
    +---------+--------+----------+-------+


    My thinking is that I should group by ID on Table B to a temp table then loop delete on non matching rows on Table A



    Because I'm new to PostgreSQL, can you show me how this can be done? Also, if there's a better way, please let me know as well. Thanks in advance!









    share







    New contributor




    sojim2 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








      How do I delete orphan rows in Table A:



      +---------+--------+----------+-------+
      | ID | option | category | rates |
      +---------+--------+----------+-------+
      | a | f | null | 2.5 |
      +---------+--------+----------+-------+
      | a | f | d | 2 |
      +---------+--------+----------+-------+
      | a | g | e | 3 |
      +---------+--------+----------+-------+
      | c | g | e | 4 |
      +---------+--------+----------+-------+
      | d | f | d | 1 |
      +---------+--------+----------+-------+


      On only IDs existing in Table B (only check IDs a & c, leave d alone):



      +---------+--------+----------+-------+
      | ID | option | category | rates |
      +---------+--------+----------+-------+
      | a | f | null | 2.5 |
      +---------+--------+----------+-------+
      | a | g | e | 3 |
      +---------+--------+----------+-------+
      | c | g | e | 4 |
      +---------+--------+----------+-------+


      Result(the second row a,f,d,2 was removed):



      +---------+--------+----------+-------+
      | ID | option | category | rates |
      +---------+--------+----------+-------+
      | a | f | null | 2.5 |
      +---------+--------+----------+-------+
      | a | g | e | 3 |
      +---------+--------+----------+-------+
      | c | g | e | 4 |
      +---------+--------+----------+-------+
      | d | f | d | 1 |
      +---------+--------+----------+-------+


      My thinking is that I should group by ID on Table B to a temp table then loop delete on non matching rows on Table A



      Because I'm new to PostgreSQL, can you show me how this can be done? Also, if there's a better way, please let me know as well. Thanks in advance!









      share







      New contributor




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












      How do I delete orphan rows in Table A:



      +---------+--------+----------+-------+
      | ID | option | category | rates |
      +---------+--------+----------+-------+
      | a | f | null | 2.5 |
      +---------+--------+----------+-------+
      | a | f | d | 2 |
      +---------+--------+----------+-------+
      | a | g | e | 3 |
      +---------+--------+----------+-------+
      | c | g | e | 4 |
      +---------+--------+----------+-------+
      | d | f | d | 1 |
      +---------+--------+----------+-------+


      On only IDs existing in Table B (only check IDs a & c, leave d alone):



      +---------+--------+----------+-------+
      | ID | option | category | rates |
      +---------+--------+----------+-------+
      | a | f | null | 2.5 |
      +---------+--------+----------+-------+
      | a | g | e | 3 |
      +---------+--------+----------+-------+
      | c | g | e | 4 |
      +---------+--------+----------+-------+


      Result(the second row a,f,d,2 was removed):



      +---------+--------+----------+-------+
      | ID | option | category | rates |
      +---------+--------+----------+-------+
      | a | f | null | 2.5 |
      +---------+--------+----------+-------+
      | a | g | e | 3 |
      +---------+--------+----------+-------+
      | c | g | e | 4 |
      +---------+--------+----------+-------+
      | d | f | d | 1 |
      +---------+--------+----------+-------+


      My thinking is that I should group by ID on Table B to a temp table then loop delete on non matching rows on Table A



      Because I'm new to PostgreSQL, can you show me how this can be done? Also, if there's a better way, please let me know as well. Thanks in advance!







      postgresql postgresql-10





      share







      New contributor




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










      share







      New contributor




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








      share



      share






      New contributor




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









      asked 22 secs ago









      sojim2sojim2

      101




      101




      New contributor




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





      New contributor





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






      sojim2 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
          });


          }
          });






          sojim2 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%2f231023%2fpostgresql-10-deleting-orphan-rows-in-table-a-on-only-ids-existing-in-table-b%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








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










          draft saved

          draft discarded


















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













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












          sojim2 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%2f231023%2fpostgresql-10-deleting-orphan-rows-in-table-a-on-only-ids-existing-in-table-b%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

          ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

          Always On Availability groups resolving state after failover - Remote harden of transaction...

          Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...