Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Survey Database structure

Status
Not open for further replies.

cdborg

Programmer
Oct 4, 2004
7
CA

I have created many queries, and reports for a survey application where each question represented one one field in the sole table in the database. This type of structure made it very difficult to work with the underlying data.
I have re-created the database and this time have normalized its structure & was wondering if anyone could give me some feedback/advise. Here is my basic structure:

tblAnswers
Answerid
Questionid
Clientid
Answer
Date

tblQuestions
Questionid
QuestionText

tblParticipant
Participantid
ParticipantName
Locationid

tblLocations
Locationid
LocationDesc

tblSurveyAnswers
Surveyid
Answerid
SurveyDesc







 
Your structures look good. Be sure to set your relationships to ensure good data goes in.

Force your question and answer boxes to use combo box look ups on forms.

Barring that, I think you are on your way.

ChaZ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top