RE: [SQL] finding rows in one table not in another - Mailing list pgsql-sql

From Jackson, DeJuan
Subject RE: [SQL] finding rows in one table not in another
Date
Msg-id F10BB1FAF801D111829B0060971D839F2D7EFF@cpsmail
Whole thread Raw
List pgsql-sql
>    > I need to find the set of rows in one table that are not in
> another
>    > table.  I used a query like the following:
>    >
>    >     select distinct id from mytable1 where id not in (select
>    > distinct id from mytable2);
>    >
>    try:
>        SELECT mytable1.id
>     FROM mytable1
>        WHERE NOT EXIST (SELECT mytable2.id
>               FROM mytable2
>              WHERE mytable1.id = mytable2.id);
>
> Thanks.  That works except it should be EXISTS (i.e., plural).
Yeah. Sorry for the typo.

> Cheers,
> Brook
    -DEJ

pgsql-sql by date:

Previous
From: Brook Milligan
Date:
Subject: Re: [SQL] finding rows in one table not in another
Next
From: "Edwin S. Ramirez"
Date:
Subject: (no subject)