I am looking to find entries that do not exist within the Practice and Game table however I am unable to use a second not in statement. Is there any other way to do this?
select VenueID from Venue
where VenueID not in (select VenueID from Practice)
and not in (select VenueId from Game)