G
Guest
Can someone explain why this query wont run? I get 'Must be updatable query'.
I clicked on Help but nothing made sense.
UPDATE tblActivityQuestions SET QuestionID = (SELECT Q.ID FROM tblQuestions
As Q WHERE tblActivityQuestions.ChecklistID = Q.ChecklistID AND
tblActivityQuestions.Sequence = Q.Sequence);
All I'm trying to do is to update a column based on values in another table.
There are no relationships involved.
I clicked on Help but nothing made sense.
UPDATE tblActivityQuestions SET QuestionID = (SELECT Q.ID FROM tblQuestions
As Q WHERE tblActivityQuestions.ChecklistID = Q.ChecklistID AND
tblActivityQuestions.Sequence = Q.Sequence);
All I'm trying to do is to update a column based on values in another table.
There are no relationships involved.