| re: database design query
From: "Keri Hardwick" <k...@removethis.sprintmail.com> - Find messages
by this author
Date: Fri, 05 Oct 2001 18:34:01 GMT
Local: Fri,Oct 5 2001 2:34 pm
Subject: Re: Questionnaire application (or data model)
Reply to Author | Forward | Print | View Thread | Show original |
Report Abuse
You will save yourself a lot of grief down the road if the table to
store
answers looks more like this:
SurveyId
QuestionId
Answer
rather than this:
SurveyId
Q1
Q2
Q3
Q4
....
Keri
"Nelson Fleet" <roadr...@aol.com> wrote in message
news:86e34513.0110050558.12de2c53@posting.google.c om...
I'd read the entire thread if I were you. A few interesting ideas in
there. And Keri's advice is right on the money. Nice thing about her
design is that it's so easy to add questions and summarize your
results, it's just silly. and if you can write ASP or something like
it, you can basically create a single page (or maybe two pages) and
just use the ASP to read the questions from your DB, create your page
on the fly, and write the answers back to a different table... |