I have a query set up that lists courses taken by individuals. Simple stuff. The client now wants a report that excludes the introductory course (Course I) from the list if a student has taken the advanced course (Course II). I have created a query listing all students taking Course I and another query listing all students taking Course II to come up with a list of IDs of those who took BOTH. How can I use that information to get Access to show only Course II in the query? :huh:
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Exclude second course from query MS Access 2007
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Exclude second course from query MS Access 2007
- This topic has 6 replies, 2 voices, and was last updated 12 years, 3 months ago.
Viewing 4 reply threadsAuthorReplies-
WSruirib
AskWoody Lounger -
WSodeus
AskWoody Lounger
-
-
WSruirib
AskWoody Lounger -
WSodeus
AskWoody LoungerMarch 9, 2013 at 10:50 am #1379448The initial query is simple:
SELECT tblStudents.StudentID, tblCourses.CourseName
FROM (tblStudents INNER JOIN tblCoursesTaken ON tblStudents.StudentID = tblCoursesTaken.StudentID) INNER JOIN tblCourses ON tblCoursesTaken.CourseID = tblCourses.CourseID;To determine which students took Course I, it’s simply a matter of using that as a criteria:
SELECT tblCoursesTaken.StudentID, tblCourses.CourseName
FROM tblCourses INNER JOIN tblCoursesTaken ON tblCourses.CourseID = tblCoursesTaken.CourseID
WHERE (((tblCourses.CourseName)=”Course I”));or, more simply, if I look only for the courseID (assuming I know it),
SELECT tblCoursesTaken.StudentID, tblCoursesTaken.CourseID
FROM tblCoursesTaken
WHERE (((tblCoursesTaken.CourseID)=10));Same thing to look for Course II, of course. And then I can easily determine which students took both. The issue is that I need to EXCLUDE Course 2 (CourseID 11, in my case) only for those students who took Course I. However, if that student also took CourseID 1 to 9 or 12 onwards, I still need to include that student in the query. So I can’t exclude the student; I can only exclude the course. I don’t want to delete history, so the fact that they took the “introductory” course remains in their student record. The client just doesn’t want to see it in the report.
-
WSruirib
AskWoody LoungerMarch 9, 2013 at 12:55 pm #1379460Use a UNION query.
1st query gets students who take the 2nd course, 2nd one just the students who took the first course but not the 2nd, and the UNION gets all the records together
You query one would be something like this:
Code:SELECT tblStudents.StudentID, tblCourses.CourseName FROM ((tblStudents INNER JOIN tblCoursesTaken ON tblStudents.StudentID = tblCoursesTaken.StudentID) INNER JOIN tblCourses ON tblCoursesTaken.CourseID = tblCourses.CourseID) WHERE (tblCoursesTaken.CourseID=11) UNION SELECT tblStudents.StudentID, tblCourses.CourseName FROM (tblStudents INNER JOIN tblCoursesTaken ON tblStudents.StudentID = tblCoursesTaken.StudentID) INNER JOIN tblCourses ON tblCoursesTaken.CourseID = tblCourses.CourseID WHERE (tblCoursesTaken.CourseID=10) AND tblStudents.StudentID NOT IN (SELECT tblCoursesTaken.StudentID FROM tblCoursesTaken WHERE tblCoursesTaken.CourseID=11)
You can change the order of the queries, it is irrelevant.
-
WSodeus
AskWoody LoungerMarch 9, 2013 at 1:50 pm #1379465Thanks for suggesting a union query. I don’t usually use them, so I never considered it. When I tried your example, I was still missing those individuals who took CourseA or CourseB, so I added one additional UNION query to catch everyone else:
UNIONSELECT tblCoursesTaken.StudentID, tblCourses.CourseName
FROM tblCoursesTaken INNER JOIN tblCourses ON tblCoursesTaken.CourseID = tblCourses.CourseID
WHERE ((Not (tblCoursesTaken.CourseID)=10 And Not (tblCoursesTaken.CourseID)=11));That seems to have done the trick. Thanks!
Viewing 4 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Small desktops
by
Susan Bradley
1 hour, 32 minutes ago -
Totally disable Bitlocker
by
CWBillow
2 hours, 30 minutes ago -
Totally disable Bitlocker
by
CWBillow
4 hours, 9 minutes ago -
Windows 11 ad from Campaign Manager in Windows 10 (Awaiting moderation)
by
Jim McKenna
7 hours, 38 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
16 hours, 17 minutes ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
18 hours, 9 minutes ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
21 hours, 18 minutes ago -
Mystical Desktop
by
CWBillow
21 hours, 31 minutes ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
2 hours, 49 minutes ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
11 hours, 42 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
1 day, 12 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
1 day, 15 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
1 day, 13 hours ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 6 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
2 days, 1 hour ago -
Location, location, location
by
Susan Bradley
15 hours, 30 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
2 days, 2 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
1 day, 17 hours ago -
June 2025 Office non-Security Updates
by
PKCano
2 days, 13 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
15 hours, 50 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
2 days, 13 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
2 days, 23 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
2 days, 2 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
3 days, 8 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
3 days, 8 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
2 days, 21 hours ago -
Firefox 139
by
Charlie
2 days, 14 hours ago -
Who knows what?
by
Will Fastie
1 day, 16 hours ago -
My top ten underappreciated features in Office
by
Peter Deegan
3 days, 9 hours ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
1 day, 2 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.