Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL Select statement question ...

Re: SQL Select statement question ...

From: Robbert Van der Hoorn <rvanderhoorn_at_wanadoo.nl>
Date: Fri, 8 Nov 2002 21:44:20 +0100
Message-ID: <3dcc226f$0$10856$8fcfb86b@news.wanadoo.nl>


This is another way:

select distinct a_key
from
(select a.key a_key, b.key b_key
 from tableA a, tableB b
 where a.key = b.key(+)
)
where b_key is null

"Martin Doherty" <martin.doherty_at_elcaro.moc> schreef in bericht news:SeJy9.4$x86.354_at_news.oracle.com...
> One way is with the NOT EXISTS predicate:
>
> select *
> from tableA
> where not exists (select 'x' from tableB where tableB.key = tableA.key)
>
> Yasuki Izaki wrote:
>
> >I'm looking for a sample SQL statement to select KEY field from tableA
> >where KEY field does not exist in tableB?
> >Lets' say, there are 2 tables (tableA and tableB). Both tables has KEY
> >column defined. I need to know the records which KEY does exist in the
> >tableA but does not exist in the tableB. What's the way to do this?
> >Please e-mail me your suggestions to yizaki_at_yacan.com
> >Thank you in advance for your hellp.
> >
> >
>
Received on Fri Nov 08 2002 - 14:44:20 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US