我想从以下三个表中选择survey_id
、question_id
和。question_text
answer_id
在 SurveyTable 我有:
Survey{survey_id,survey_title}
在 QuestionTable 我有:
Question{survey_id,question_id,question_text}
在答案表中:
Answer{question_id,answer_id,answer_text}
我想使用连接从这些表中进行选择。Whensurvey_id
等于 QuestionTable 和 SurveyTable 中的值。