I have two tables.
They actually have pretty much the same columns.
Is there a way to use pl sql developer to compare the data in the tables by, say, keying on two columns?
select c1, c2, c3,
count(src1) CNT1,
count(src2) CNT2
from
( select a.*,
1 src1,
to_number(null) src2
from a
union all
select b.*,
to_number(null) src1,
2 src2
from b
)
group by c1,c2,c3
having count(src1) <> count(src2)
/