Skip to content
Advertisement

Find missing rows between three related tables

I have three tables:

Person

Dates

Absence

I need to find all of the person_id‘s in the Person table and the date‘s from the Dates table who have not booked any absence matching the following criteria:

  • Dates.date_type = ‘PUBLIC_HOLIDAY’
  • Absence.absence_type = ‘HOLIDAY’

Basically, I need to find the people and the dates which are public holidays they have not booked an absence for as holiday.

Advertisement

Answer

You can try this below logic-

DEMO HERE

If you wants only information with not booked, just simply add below line to the script-

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement