Bill4tektips
Technical User
I am trying to set up an Update Query to update records in tblBMS_Docs_From. I need it to update the field "Status" from the master data which is in a table named Raw_Data.
The Status field has all set to "Published" but if one is changed to "Withdrawn" then I need tblBMS_Docs_From to update.
My sql code at the moment is:
UPDATE Raw_Data INNER JOIN tblBMS_Docs_From ON Raw_Data.BMSReference = tblBMS_Docs_From.BMSReferenceFrom SET tblBMS_Docs_From.Status = "Withdrawn"
WHERE (((tblBMS_Docs_From.Status)="Withdrawn"));
Any help would be appreciated
The Status field has all set to "Published" but if one is changed to "Withdrawn" then I need tblBMS_Docs_From to update.
My sql code at the moment is:
UPDATE Raw_Data INNER JOIN tblBMS_Docs_From ON Raw_Data.BMSReference = tblBMS_Docs_From.BMSReferenceFrom SET tblBMS_Docs_From.Status = "Withdrawn"
WHERE (((tblBMS_Docs_From.Status)="Withdrawn"));
Any help would be appreciated