Given these two tables:
CREATE TABLE TEST1 (TEST VARCHAR2(1 BYTE)) CREATE TABLE TEST2 (TEST VARCHAR2(1 BYTE))
Where TEST1 has two rows both w
the ALL modifier makes UNION return all rows (e.g., UNION ALL), maybe it can be applied to MINUS? As in
select field1 from table1 minus all select field2 from table2