J
JohnnyC
DELETE questions.question, answers.answer
FROM questions LEFT JOIN answers ON
questions.id=answers.questionId
WHERE questions.id=2;
I want to delete a question and answer pair even if a
question has not been answered yet. When I try to test
this in Access, it tells me that I need to select a
table. I thought I had. Any suggestions?
FROM questions LEFT JOIN answers ON
questions.id=answers.questionId
WHERE questions.id=2;
I want to delete a question and answer pair even if a
question has not been answered yet. When I try to test
this in Access, it tells me that I need to select a
table. I thought I had. Any suggestions?