我有一个sqlite数据库,我有3个名为Cases
,Questions
和options
的表。
表1案例结构
id description。
table2问题是
id description
table3选项结构是
question_id选项
现在我如何将问题ID调用问题ID并将问题ID调用选项question_id。它应该显示在一个视图中。
谢谢和问候。
答案 0 :(得分:0)
我认为您可能需要对基本的SQL操作进行更多阅读,但我认为您的目标是:
SELECT Cases.id AS Cases_Id, Cases.description as Cases_Desc,
Questions.id AS Questions_Id, Questions.description as Questions_Desc,
choices
FROM Cases
INNER JOIN Questions ON Cases.id = Questions.id
INNER JOIN Options ON Options.Questions.id = Options.question_id