A
anobes03
What is the best method to create a database that can store contestants and
scores for each contest they participate in??
scores for each contest they participate in??
What is the best method to create a database that can store contestants and
scores for each contest they participate in??
Thanks here is what i got:
Tables:
Contestants - ContestantsId,(Contact INFO)
Judges - JudgeID (Contact info)
Category - Cat.ID Name of Cat.(Ex. Female Adult, Male Teenager)
Competetion - Comp.ID Name of Comp.(Comedy,Fashion,etc...)
Entry- EntryID,CompID,CategoryID,ContestantID,JudgeID
Results - EntryID,Score
Do you see any potential holes? The database will hold couple hundred entries.
Need reports to run for 1st,2nd,3rd Place. Also reports to run for different
score results per entries.
Also I need some ideas on Forms to build, for entering the scores. Thanks!
Wow thanks your advice helped me alot!! The database is almost complete but,
The only problem I'm having is there is about 25 judges, and 700 entries, and
Every Judge will score every entry (give or take a few). What will be a way
to handle this??
Steve said:It seems you need to change the results table and add another table. In the
results table remove JudgeID and add a new field ResultID (Auto). Then
create a new table:
TblResultJudge
ResultJudgeID
ResultID
JudgeID
Steve
(e-mail address removed)