I have a trivia database and I want to keep track of what questions were used at different establishments, so that I can avoid using the same question more than once at a single establishment.
Say for example, Question 1 was used at both pub A and pub B. I then want to build a query that shows me all of the questions that have NOT been used at pub B. I build the query seen above and in the Criteria for the ClientName field I put 'not "pub B" '. The problem with this query is that Question 1 has also been used at pub A, so it will return Question 1 in the results - not what I want given that Question 1 has already been used at pub B.
Basically I would like to know how to build a query that excludes ALL of the question ID's that have any association with pub B. I have tried building a query with a subquery, but gotten some wonky results.