Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Check if a value in one table doesnt exist
Another approach, assuming ID is an index in table2:
select *
from table1 t1
where exists (select 'X' from table2 t2 where t1.id = t2.id)
> -----Original Message-----
> From: Roland.Skoldblom_at_ica.se [mailto:Roland.Skoldblom_at_ica.se]
> Sent: Thursday, October 25, 2001 3:00 AM
> To: Multiple recipients of list ORACLE-L
> Subject: Check if a value in one table doesnt exist
>
>
> Hallo you DBA'
>
> Can anyone give me a good example on a sql select statement
> checking if any value in id field in table one exists in
> table two's id field?Table two also contains the
> corresponding id field but with other field names besides. Like this
>
> Table 1: Id Name Year
> Table 2: :Id City Country
>
> Thanks in advance
>
> Roland Sköldblom
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author:
> INET: Roland.Skoldblom_at_ica.se
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: schmoldt_at_fyiowa.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Oct 25 2001 - 14:59:16 CDT
![]() |
![]() |