Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Verify data is identical methods - which is best?
using minus will be fastest .....
select * from new_results
minus
select * from old_results
this is assuming both tables have same structure ...
hth
Raj