I am trying to write an update query and I am having problems with
a query must have at least one destination field error.
This query involves 2 tables (RECORD & PROJECT) that have matching fields, but the ‘RECORD’ table has an added field ‘jobDes’ and the column is null. I need to update the data from the another table
I want to match up the associated Fields then update the data from the one table
to the second table
An example of the code I used in Access is as follows:
UPDATE Record
SET Record.jobDes =(SELECT Project.jobDes FROM Project
WHERE Record.jobno = Project.jobno),
I am not sure about the syntax, any help is appreciated
Thanks
Pat
a query must have at least one destination field error.
This query involves 2 tables (RECORD & PROJECT) that have matching fields, but the ‘RECORD’ table has an added field ‘jobDes’ and the column is null. I need to update the data from the another table
I want to match up the associated Fields then update the data from the one table
to the second table
An example of the code I used in Access is as follows:
UPDATE Record
SET Record.jobDes =(SELECT Project.jobDes FROM Project
WHERE Record.jobno = Project.jobno),
I am not sure about the syntax, any help is appreciated
Thanks
Pat