C
cwoelfe
I have a Query that lists anyone enrolled that is a senior... it is querying
from the college's SIS database.
Then I have a table called "Withdrawals"... This is a seperate table that is
created from another query entirely. But it does not list if the students are
Seniors.
I want to create an update query that will put a "SR" into the Seniors field
in my Withdrawals TABLE if the Student ID from my Withdrawals TABLE matches
the Student ID in the Seniors QUERY.
I was able to create a Select Query that would pull out and list the the
students.... however, when i tried to turn it into an Update Query, it
wouldn't work.. it said i needed an updatable query... i just don't
understand..
andways, here is the SELECT QUERY that worked...
SELECT [SS Enrollments - Seniors - Step 3].TERM_YYT, [SS Enrollments -
Seniors - Step 3].SECTION_ID, [SS Enrollments - Seniors - Step 3].STU_ID, [SS
Enrollments - Seniors - Step 3].STU_NAME, [SS Enrollments - Seniors - Step
3].RT_TCAL_OPT1
FROM [Withdrawal List] RIGHT JOIN [SS Enrollments - Seniors - Step 3] ON
[Withdrawal List].STU_ID = [SS Enrollments - Seniors - Step 3].STU_ID;
Now all I need is how to make an Update Query that will update the "Senior"
field in the Withdrawals table from the RT_TCAL_OPT1 field in this query...
from the college's SIS database.
Then I have a table called "Withdrawals"... This is a seperate table that is
created from another query entirely. But it does not list if the students are
Seniors.
I want to create an update query that will put a "SR" into the Seniors field
in my Withdrawals TABLE if the Student ID from my Withdrawals TABLE matches
the Student ID in the Seniors QUERY.
I was able to create a Select Query that would pull out and list the the
students.... however, when i tried to turn it into an Update Query, it
wouldn't work.. it said i needed an updatable query... i just don't
understand..
andways, here is the SELECT QUERY that worked...
SELECT [SS Enrollments - Seniors - Step 3].TERM_YYT, [SS Enrollments -
Seniors - Step 3].SECTION_ID, [SS Enrollments - Seniors - Step 3].STU_ID, [SS
Enrollments - Seniors - Step 3].STU_NAME, [SS Enrollments - Seniors - Step
3].RT_TCAL_OPT1
FROM [Withdrawal List] RIGHT JOIN [SS Enrollments - Seniors - Step 3] ON
[Withdrawal List].STU_ID = [SS Enrollments - Seniors - Step 3].STU_ID;
Now all I need is how to make an Update Query that will update the "Senior"
field in the Withdrawals table from the RT_TCAL_OPT1 field in this query...