0

I am getting the following error message when attempting to save or run a SQL query in MS Access 2016:

"Syntax error (missing operator) in query expression 'M.ScheduleKey FROM Actual_Data A'

The Query is:

UPDATE Actual_Data
SET A.ScheduleKey = M.ScheduleKey
FROM Actual_Data A, Match M
WHERE A.ActualKey = M.ActualKey

Both the ScheduleKey & ActualKey fields are text fields.

Any help on resolving this would be greatly appreciated.

1 Answer 1

1

You can use this instead:

UPDATE Actual_Data A
INNER JOIN Match M
ON A.ActualKey = M.ActualKey
SET A.ScheduleKey = M.ScheduleKey
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.