Stephen Simon
New member
- Local time
- Today, 06:09
- Joined
- Apr 2, 2025
- Messages
- 7
Hello,
I track training for my office. I’m trying build a single query that will show me who still needs training in a certain category, (Category 1).
The Legacy expression is to exclude people who no longer work here.
Category 1 is a yes/no which tell whether the training is in category 1 or not.
I want to end up with a list of people in need of Category 1 training and which Category 1 trainings they need.
Ideally, I would inner join a Staff table and draw the Staff_Name from there. When I try to do that, I get everyone in the Staff table.
I’ve been banging at this for a week. I won’t tell you all of the things I’ve tried, because I could have easily picked up the right tool and just used it the wrong way. It’s been over a decade since I’ve tried to do anything this complicated.
I look forward to your comments.
Here’s what I have so far:
SELECT DISTINCT Technical_Training.Staff_Name, Technical_Training.Training_Name, Technical_Training.Training_Number
FROM Technical_Training
WHERE (((Technical_Training.Staff_Name)
Not In (SELECT Staff_Name FROM Technical_Training
WHERE Training_Number IN ([Enter Training Number])))
AND ((Technical_Training.Legacy)<>-1)
AND ((Technical_Training.[Category 1])=True));
I track training for my office. I’m trying build a single query that will show me who still needs training in a certain category, (Category 1).
The Legacy expression is to exclude people who no longer work here.
Category 1 is a yes/no which tell whether the training is in category 1 or not.
I want to end up with a list of people in need of Category 1 training and which Category 1 trainings they need.
Ideally, I would inner join a Staff table and draw the Staff_Name from there. When I try to do that, I get everyone in the Staff table.
I’ve been banging at this for a week. I won’t tell you all of the things I’ve tried, because I could have easily picked up the right tool and just used it the wrong way. It’s been over a decade since I’ve tried to do anything this complicated.
I look forward to your comments.
Here’s what I have so far:
SELECT DISTINCT Technical_Training.Staff_Name, Technical_Training.Training_Name, Technical_Training.Training_Number
FROM Technical_Training
WHERE (((Technical_Training.Staff_Name)
Not In (SELECT Staff_Name FROM Technical_Training
WHERE Training_Number IN ([Enter Training Number])))
AND ((Technical_Training.Legacy)<>-1)
AND ((Technical_Training.[Category 1])=True));