Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Comparing between two tables
At 11:13 PM 1/15/2003, you wrote:
>David
>You might want to look at
>select *
>from t1
>minus
>select *
>from t2
Note that if you don't know that one table is always a subset of the other, you need to do
(select * from t1
minus
select * from t2)
union
(select * from t2
minus
select * from t1)
>/
>t
>
>-----Original Message-----
>Sent: Thursday, 16 January 2003 9:04 am
>To: Multiple recipients of list ORACLE-L
>
>
>Is it a way to compare two tables to see the differences? We have problem
>with our database, someone input new data into database that causes problem,
>we want to find and remove those entries from that table.
>
>Thanks,
>David
>--
>Please see the official ORACLE-L FAQ: http://www.orafaq.net
>--
>Author: Nguyen, David M
> INET: david.m.nguyen_at_xo.com
>
>Fat City Network Services -- 858-538-5051 http://www.fatcity.com
>San Diego, California -- Mailing list and web hosting services
>---------------------------------------------------------------------
>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).
>
>
>Disclaimer.
>
>This e-mail is private and confidential. If you are not the intended
>recipient, please advise us by return e-mail immediately, and delete
>the e-mail and any attachments without using or disclosing the
>contents in any way. The views expressed in this e-mail are those
>of the author, and do not represent those of this company unless
>this is clearly indicated.
>
>You should scan this e-mail and any attachments for viruses.
>
>This company accepts no liability for any direct or indirect
>damage or loss resulting from the use of any attachments to this e-mail.
>
>
>--
>Please see the official ORACLE-L FAQ: http://www.orafaq.net
>--
>Author:
> INET: Trevor.Williams_at_rac.com.au
>
>Fat City Network Services -- 858-538-5051 http://www.fatcity.com
>San Diego, California -- Mailing list and web hosting services
>---------------------------------------------------------------------
>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).
Justin Cave
Distributed Database Consulting
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Justin Cave INET: jcave_at_cableone.net Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- 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 Jan 16 2003 - 03:43:48 CST
![]() |
![]() |