Hi. I am trying to design a database for a very simple web survey. It is one question with three mult choice answers. Users select check box, submit, and see the total per answer increase as theirs is added.
I have no problem recording the number of "votes" per possible answer - IE What is your favorite item? 1. Apple 2. Chicken 3. Soap. Data reads as - Apple = 23, Chicken = 45 , Soap = 2
The challenge is to also record the name of the survey, date of survey (hard coded), and the answer data.
I assume that one table will house: SurveyName (Primary Key), SurveyDate.
THIS IS WHERE I AM STUCK
- Linking another table using SurveyName I need to define each mult choice answer.
SurveyName, (SurveyAnswers) or Apple, Chicken, Soap
- Per each mult choice answer I need to record the number of "votes"
Apple = 23 , Chicken = 45 , Soap = 2
Growth allowance:
- The mult choices will be dynamic in the amount that could exist each day. One day could have three possible answers the next seven.
- The individual mult choice answers need to be named so I can track which answer was chosen. These names will also change per survey.
Apple = 23 , Chicken = 45 , Soap = 2
Car = 43 , Truck = 24 , Bike = 7, Train = 56 , Boat = 87
Any thoughts?
Thanks
Rich
-