select *
from
(
( select * from TableInSchema1
minus
select * from TableInSchema2)
union all
( select * from TableInSchema2
minus
select * from TableInSchema1)
)
měli byste to udělat, pokud to chcete vyřešit pomocí dotazu
select *
from
(
( select * from TableInSchema1
minus
select * from TableInSchema2)
union all
( select * from TableInSchema2
minus
select * from TableInSchema1)
)
měli byste to udělat, pokud to chcete vyřešit pomocí dotazu