Treason
#@$%#!
- Local time
- Today, 15:55
- Joined
- Mar 12, 2002
- Messages
- 340
I have 2 tables, both tables having identical fields. [Stud_ID],[Job],[Misc]
Table1 has all my records
Any records In that exist in Table2 also have a record in Table1 joined by [Stud_ID].
For Example, Table1 might have [Stud_ID]=1234 but the corresponding [Job] field for that record would be blank. Table2 may have [Stud_ID]=1234 and the corresponding [Job] Field will have some value. I am looking to "Replace" records in Table1 with the all corresponding records from Table2. So the query will grab the value of the Job Field from Table2, and append it into the Table1 Job Field, making sure that only replaces the value that are join by [Stud_ID]. My Append query never works correctly
This is my how my query design view looks...
Field: Job
Table: Table1
Update to: [Table2].[Job]
Can Someone write me SQL for this because I am really lost

Table1 has all my records
Any records In that exist in Table2 also have a record in Table1 joined by [Stud_ID].
For Example, Table1 might have [Stud_ID]=1234 but the corresponding [Job] field for that record would be blank. Table2 may have [Stud_ID]=1234 and the corresponding [Job] Field will have some value. I am looking to "Replace" records in Table1 with the all corresponding records from Table2. So the query will grab the value of the Job Field from Table2, and append it into the Table1 Job Field, making sure that only replaces the value that are join by [Stud_ID]. My Append query never works correctly
This is my how my query design view looks...
Field: Job
Table: Table1
Update to: [Table2].[Job]
Can Someone write me SQL for this because I am really lost