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

Home -> Community -> Usenet -> c.d.o.server -> Re: missing from one table

Re: missing from one table

From: Ana C. Dent <anacedent_at_hotmail.com>
Date: Tue, 05 Oct 2004 13:58:37 GMT
Message-ID: <Xns957946F9AD26FSunnySD@68.6.19.6>


"Dale DeRemer" <dderemer_nospam_at_agmc.org> wrote in news:cjsbi5$2qv$1_at_malgudi.oar.net:

> We want to make a query where we check table A for employee numbers and
> compare that with table B. We would like to build a list of employees who
> are in table A but not in table B. An ideas on how to build that type of
> query?
>
>

select emp_id from table_a
minus
select emp_id from table_b; Received on Tue Oct 05 2004 - 08:58:37 CDT

Original text of this message

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