F
Frederick Wilson
I am trying to find all the people who have NOT completed training.
There are over 600 people in the database. When I run this query I only
get 385 records.
Even when I use j.NameCode Is Null or = Null it gives me NO records.
SELECT tblPersonnel.LAST, jtblNameToEvent.NameCode,
jtblNameToEvent.EventCode, tblPersonnel.NameCode
FROM tblPersonnel LEFT JOIN jtblNameToEvent
ON tblPersonnel.NameCode = jtblNameToEvent.NameCode
WHERE (((jtblNameToEvent.EventCode)=1))
ORDER BY tblPersonnel.LAST
UGH, What am I doing wrong?
I think this has something to do with the join table for the many-many
relationship. All the names in tblPersonnel may be in the join table at
least once.
There are over 600 people in the database. When I run this query I only
get 385 records.
Even when I use j.NameCode Is Null or = Null it gives me NO records.
SELECT tblPersonnel.LAST, jtblNameToEvent.NameCode,
jtblNameToEvent.EventCode, tblPersonnel.NameCode
FROM tblPersonnel LEFT JOIN jtblNameToEvent
ON tblPersonnel.NameCode = jtblNameToEvent.NameCode
WHERE (((jtblNameToEvent.EventCode)=1))
ORDER BY tblPersonnel.LAST
UGH, What am I doing wrong?
I think this has something to do with the join table for the many-many
relationship. All the names in tblPersonnel may be in the join table at
least once.