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!

multiple option fields or multiple yes/no fields

Status
Not open for further replies.

NETHROW

Technical User
Oct 18, 2002
12
US
I'm trying to set up a db for employee counseling that will have multiple choices for a field. example

data field answer

Work Attitude Below Average Above
Gets along with peers Below Average Above
Professionalism Below Average Above

Please keep the responces as simple as possible, I'm kinda of new at this.
Thanx,
Nethrow
 
This is basically a survey database:

tblQuestion
QuestionID
QuestionText

tblAnswers
AnswerID
AnswerText

tblQuestionsAnswers
QuestionID
AnswerID
(if all your answers are the same - Below, Average, Above then you really don't need this table, if you have different answers for some questions this is where that would be set up)

tblResponses
SurveyID
QuestionID
AnswerID

you should already have a person table somewhere that has employeeID, if not you'll need to create one:

tblEmployees
EmployeeID
Name
Address
Etc.

tblEmployeeSurveys
EmployeeID
SurveyID

this should get you started. You may also want to check out the relational database article on JeremyNYC's website:


HTH

leslie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top