MINUS operator not giving exact result
465334Aug 8 2006 — edited Aug 8 2006Hi ,
I am checking the data of two tables using MINUS operator but it is not providing correct result.
The problem is like
select count(*) from table1=111960
and
select count(*) from table2=102588
so
select * from table1 MINUS select * from table must give a resultset of 9372 rows or more.
How come it is returning less rows ?