テーブルに同じ列がある場合は、これを使用できます。両方のテーブルの行が同一である場合、これは行を返しません:
(
select * from test_data_01
minus
select * from test_data_02
)
union
(
select * from test_data_02
minus
select * from test_data_01
);
テーブルに同じ列がある場合は、これを使用できます。両方のテーブルの行が同一である場合、これは行を返しません:
(
select * from test_data_01
minus
select * from test_data_02
)
union
(
select * from test_data_02
minus
select * from test_data_01
);