Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: SQL Statement
Taking for granted that the two tables are equal in their structure, this is
a way to do it:
(select * from table1
union
select * from table2)
minus
(select * from table1
intersect
select * from table2)
hi_wean_at_yahoo.com wrote in message <35c959c7.14819231_at_nntp.jaring.my>...
>Hi world,
>I have some sql stmt problem. If I have 2 tables, ie application and
>applicant.
>How to write a sql statement to select the records that do not exist
>in both tables ?
>
>Thanks in advance!
>
>V
>
Received on Thu Aug 06 1998 - 03:45:56 CDT
![]() |
![]() |