G
Guest
I get a syntax error on this, can I not do a SET .. = SELECT?:
UPDATE tblRuleQA SET Response = SELECT Q.DefaultResponse FROM
tblRuleQuestions As Q, tblRuleQA As R
WHERE Q.ID = R.QuestionID
AND R.Response IS NULL
AND Q.DefaultResponse IS NOT NULL
Is there another way to do it? Thanks.
UPDATE tblRuleQA SET Response = SELECT Q.DefaultResponse FROM
tblRuleQuestions As Q, tblRuleQA As R
WHERE Q.ID = R.QuestionID
AND R.Response IS NULL
AND Q.DefaultResponse IS NOT NULL
Is there another way to do it? Thanks.