Hi
I have 2 tables A and B.Both are same structurally but have different records.Now i want to know the records in A but not in B.
Following is what i have already tried :
a) Usage of set operator (select * from A - Select * from B) --- Giving Access Violation
b) Usage of | operator(select a1|a2 from A where a1|a2 not in (select a1|a2 from B)
a1,a2 is the unique key defined on both the tables. --- Gives invalid operator for datatype.This works in Oracle.
Regards
Poonam