我有一个调查网络应用程序。调查可以有一个多项选择题。多项选择题的答案可能取决于其他问题的答案。
示例:
Question 1 has choices: HP, Acer, Samsung, Lenovo
Question 2 has choices: Android, Ubuntu, iOS, Windows
Question 3 has choices: Ubuntu, OS X, Windows
Question 4 has choices: Adidas, Nike, Puma
说问题4取决于问题1,2和3的答案组合。
示例1:
如果有人回答:问题1 =“HP”,问题2 =“Ubuntu”, 问题3 =“OS X”;问题4自动设置为“Puma”
示例2:
如果有人回答:问题1 =“Acer”,问题2 =“Ubuntu”, 问题3 =“Ubuntu”;问题4自动设置为“Adidas”
*两个例子都有相同的逻辑。
一般来说,一些调查问题的答案可能取决于其他调查问题的答案。
如何为此目的设计/建模数据库?
这是我创建的初始表关系(随意修改它):
Users: user_id
Questions: question_id
Choices: choice_id, question_id
Answers: answer_id, user_id, question_id
其他信息:
我正在考虑的管理用户界面流程是:
1. The admin creates several independent questions (questions which have answers independent of other questions' answer)
2. The admin creates a dependent question, selects one or many questions which he created earlier, selects a combination of answers from those question (just like in examples 1 and 2 above) and then sets an answer for the dependent question based on those combination of answers.
... The admin proceeds creating several more questions.
编辑:
感谢你的想法@MahmoudGamal。我创建了一些基于您的设计的东西:
Combinations table
ID
question_id # the dependent question's id
choice_id # the automatic answer based on the combination of other answers
Answer Combinations table
ID
combination_id
question_id # the question that is depended upon by the dependent question
choice_id # the choice that will be used for the combination
所以我可以为一个问题提供多种组合。例: 如果我想问题4接受几种组合。一种组合有不同的答案。
Answer Combinations table
ID combination_id question_id choice_id
1 1 1 1
2 1 2 2
3 1 3 3
4 2 1 2
5 2 2 2
6 2 3 1
组合表将有
Combinations table
ID question_id choice_id
1 4 4
2 4 3
看起来非常整洁。你觉得怎么样?
PS:请原谅我,但我是Stack Overflow的新手,我仍然在寻找自己的方式。答案 0 :(得分:0)
所以这是我可以从你的问题中理解的情景:
管理员指定先前问题的答案与另一个问题之间的关系,基于此条件,此问题将基于此关系自动回答,并且此逻辑关系是手动指定的。因此,为此,您还需要两个表:
<强> PreviousQuestionsAnswers
强>:
QuestionId
,PreviousQuestionId
,PreviousAnswerID
<强> QuestionPreAnswer
强>:
QuestionId
,AnswerId
例如:
如果有人回答:问题1 =“HP”,问题2 =“Ubuntu”, 问题3 =“OS X”;问题4自动设置为“Puma”
然后这两个表将具有如下内容:
PreviousQuestionsAnswers
:
QuestionId PreviousQuestionId PreviousAnswerId
4 1 1
4 2 2
4 3 3
QuestionPreAnswer
:
QuestionId AnswerId
4 4
请注意:这些数据由管理员预先输入,因此,在应该进行该调查的OP之后的前端应用程序中,您将匹配他在之前的问题中输入的答案应该输入您已经拥有的Answers
,使用PreviousQuestionsAnswers
表中的预定义条件,如果是,则使用选择QuestionPreAnswer
设置问题。
答案 1 :(得分:0)
原谅我的英语。 :)我的想法也是......你必须为prereq答案创建新表。
PreAns表样本
q_id = 2
pre_qid = 1
pre_ans = 3
your_ans = 2
然后检查PreAns表是否已通过正确的预答案回答。
只是尝试:)希望会有所帮助