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, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
Have you checked your FICO score?
by
Susan Bradley
24 minutes ago -
Chrome ‘Scream to Unlock’ : Scream louder to get more time on Social Media
by
Alex5723
1 hour, 48 minutes ago -
Taskbar icon size
by
CWBillow
5 hours, 42 minutes ago -
Is it Local or is it Microsoft Account?
by
RetiredGeek
1 hour, 6 minutes ago -
Does Your State Reveal Who’s Been Hacked?
by
Nibbled To Death By Ducks
21 hours, 18 minutes ago -
A one-year extension to Windows 10 — almost free!
by
Susan Bradley
2 hours, 25 minutes ago -
Windows Configuration Update (KB5062324) – June 2025
by
Alex5723
8 hours, 41 minutes ago -
A federal judge sides with Anthropic in lawsuit over training AI
by
Alex5723
1 day, 2 hours ago -
Name of MS Word Formatting Feature
by
John Baum
14 hours, 58 minutes ago -
InControl Failure?
by
Casey H
13 hours, 21 minutes ago -
Microsoft : Free 1 year support for Windows 10 after EOL
by
Alex5723
15 hours, 3 minutes ago -
MS-DEFCON 3: Businesses must tread carefully
by
Susan Bradley
6 hours, 46 minutes ago -
McLaren Health Care says data breach impacts 743,000 patients
by
Nibbled To Death By Ducks
2 days, 1 hour ago -
WhatsApp banned on House staffers’ devices
by
Alex5723
1 day, 20 hours ago -
Is your device eligible?
by
Susan Bradley
2 days, 4 hours ago -
Windows 11 Insider Preview build 26200.5661 released to DEV
by
joep517
2 days, 10 hours ago -
Windows 11 Insider Preview build 26120.4452 (24H2) released to BETA
by
joep517
2 days, 10 hours ago -
Hello Windows…My Problem is Windows Hello…
by
rdleib
2 days, 11 hours ago -
New Canon Printer Wants Data Sent
by
Win7and10
2 days, 11 hours ago -
I set up passkeys for my Microsoft account
by
Lance Whitney
1 hour, 12 minutes ago -
AI is for everyone
by
Peter Deegan
2 days, 11 hours ago -
Terabyte update 2025
by
Will Fastie
2 days, 5 hours ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
12 hours, 48 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
1 day, 5 hours ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
1 day, 14 hours ago -
Plugged in 24-7
by
CWBillow
2 days, 20 hours ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
3 days, 23 hours ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
3 days, 21 hours ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
5 days, 14 hours ago -
Are Macs immune?
by
Susan Bradley
9 hours, 6 minutes 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.