これを試してください:
(select * from T1 minus select * from T2) -- all rows that are in T1 but not in T2
union all
(select * from T2 minus select * from T1) -- all rows that are in T2 but not in T1
;
外部ツールはありません。 union all
でパフォーマンスの問題はありません 。
これを試してください:
(select * from T1 minus select * from T2) -- all rows that are in T1 but not in T2
union all
(select * from T2 minus select * from T1) -- all rows that are in T2 but not in T1
;
外部ツールはありません。 union all
でパフォーマンスの問題はありません 。