select *
from
(
( select * from TableInSchema1
minus
select * from TableInSchema2)
union all
( select * from TableInSchema2
minus
select * from TableInSchema1)
)
यदि आप इसे एक प्रश्न के साथ हल करना चाहते हैं तो आपको चाल चलनी चाहिए
select *
from
(
( select * from TableInSchema1
minus
select * from TableInSchema2)
union all
( select * from TableInSchema2
minus
select * from TableInSchema1)
)
यदि आप इसे एक प्रश्न के साथ हल करना चाहते हैं तो आपको चाल चलनी चाहिए