A
anotherron
I have a database, MEETINGS, with two tables. The first table, PERSONS, has information about people who have attended meetings. The second table, ATTENDEES, has information about who attended each meeting. There is a row for each attendee/meeting pair. The two important fields in the ATTENDEES table are the PersonID and the MeetingDate. I set up the database in this way to normalize it.
I want to SELECT PersonIDs for those persons that attended a meeting on date A but did not attend the meeting on date B. I do not want those people that attended both meetings or only the meeting on date B.
I have tried all sorts of JOINs but to no avail. How do I write a query that will give me what I need?
I want to SELECT PersonIDs for those persons that attended a meeting on date A but did not attend the meeting on date B. I do not want those people that attended both meetings or only the meeting on date B.
I have tried all sorts of JOINs but to no avail. How do I write a query that will give me what I need?