2

我有一个调查网络应用程序。调查可以有多项选择题。多项选择题的答案可能取决于其他问题的答案。

例子:

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自动设置为“阿迪达斯”

*两个例子的逻辑相同。

通常,一些调查问题的答案可能依赖于其他一些调查问题的答案。

您如何为此目的设计/建模数据库?

这是我创建的初始表关系(随意修改):

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 的新手,我还在摸索中。

4

2 回答 2

0

原谅我的英语。:) 我的想法也是……您必须为 prereq 答案创建新表。

PreAns 表示例

q_id = 2
pre_qid = 1
pre_ans = 3
your_ans = 2

然后检查 PreAns 表是否已被正确的预答案回答。

只是尝试:)希望会有所帮助

于 2013-01-13T08:22:05.210 回答
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

于 2013-01-13T07:33:44.223 回答