Der experts
I am trying to model a complex questionnaire following this database model:
http://www.databaseanswers.org/data_models/questionnaires_complex/index.htm
I am having a little bit of difficulty understanding the model.
Let us say that i have a question which takes a Ranked Answer from 1-5
[Table]
Question_types
type_code = 1
type_description = "Ranked Answer"
[Table]
Questions
question_number = 1
question_type = 1
question_wording = "How much do you like lasagne?"
I want the question ranked from 1-5 – in which table should i put the possible rankings?
Thanks in advance
Nanek
Something like this, I suppose?
And thus
question_numberwould be a foreign key here, assuming it’s the primary key in yourQuestionstable.