D
dee
I have received great advice regarding my database. Am reading Database
Design for Mere Mortals and have also downloaded "At Your Survey" database,
both of which have been extremely useful.
I am in the process of constructing my tables, which, so far are comprised
of (in general):
tblParticipants
Id PK, Participant Number, Last, First, Address, Phone, etc.
tblSurveys
ID PK, survey name, survey code
tblInterviewers
ID PK, name of interviewer, their code
tblFamilyRelationships
ID PK, relationship number, relationship (father, mother, brother, cousin,
aunt, etc. in relationship with the head of household)
I now want to create a table that contains the questions and another that
contains the possible responses to the questions.
Each question is denoted by the survey code, followed by Q1, Q2, etc. That
is OK from what I have so far created...
The answers are numbered: 1 - Yes, 2- No, etc. However, answers may also
be 1 - male, 2 - female, etc. In other words, 1, 2, 3, 4, 5, 6, etc. of
possible answers that can be chosen are not always the same answers.
However, I do have answers 50, 51, 52 and 53 that are always the same (n/a,
Doesn't know, etc.)
I am OK with inputting the questions, showing the questions numbers by
displaying the corresponding questionnaire code and question number.
However, how should I approach the content of the Responses table?
I hope this is somewhat clear!
Design for Mere Mortals and have also downloaded "At Your Survey" database,
both of which have been extremely useful.
I am in the process of constructing my tables, which, so far are comprised
of (in general):
tblParticipants
Id PK, Participant Number, Last, First, Address, Phone, etc.
tblSurveys
ID PK, survey name, survey code
tblInterviewers
ID PK, name of interviewer, their code
tblFamilyRelationships
ID PK, relationship number, relationship (father, mother, brother, cousin,
aunt, etc. in relationship with the head of household)
I now want to create a table that contains the questions and another that
contains the possible responses to the questions.
Each question is denoted by the survey code, followed by Q1, Q2, etc. That
is OK from what I have so far created...
The answers are numbered: 1 - Yes, 2- No, etc. However, answers may also
be 1 - male, 2 - female, etc. In other words, 1, 2, 3, 4, 5, 6, etc. of
possible answers that can be chosen are not always the same answers.
However, I do have answers 50, 51, 52 and 53 that are always the same (n/a,
Doesn't know, etc.)
I am OK with inputting the questions, showing the questions numbers by
displaying the corresponding questionnaire code and question number.
However, how should I approach the content of the Responses table?
I hope this is somewhat clear!