I have 3 tables, Reporter_Vacation, Dropper, Vacation_Temp.
Reporter_Vacation has Reporter, Start_dt, End_dt (the 3 combined are unique)
Dropper has Dropper_ID and Reporter (both are unique)
Vacation_Temp has Dropper_ID, Start_dt, End_dt (the 3 combined are unique)
How can I find what Reporter, Start_dt, and End_dt are in Vacation_Temp that are not in Reporter_Vacation?
SELECT DROPPER_ID, BEGIN_DT, END_DT
FROM VACATION_TEST
MINUS
SELECT DROPPER.DROPPER_ID, REPORTER_VACATION.BEGIN_DT, REPORTER_VACATION.END_DT
FROM REPORTER_VACATION, DROPPER
WHERE DROPPER.REPORTER = REPORTER_VACATION.REPORTER;