I'm trying to design a database for an online survey.
So far I have 2 tables Question and Answers
- Questions Table
- "Question Text" VarChar
- "Number" Integer Primary Auto Inc.
- "Date Used" DateTime
- Answers Table
- "Answer Text" VarChar
- "Question Number" Int
- "Respondent Number" Int
- "Answer Number" Int
- "Key" Primary Auto Inc
I want to be able to create a report of questions and annswers.
Example:
What is your Gender? Male 20 Female 15
Anyone give advice on this setup and how do I tie these 2 tables together?
Thanks in advance.
Jim