
Originally Posted by
June7
Data structure is not normalized.
There are 16 events but the Member table allows for participation in only 2?
Need fields in Member table for EventNum. Then can join the two tables in query on the common EventNum. However, because Member data is not normalized this means joining with Event table twice, for each of the two event number fields that will be required.
This data is actually many-to-many. Each member can be in multiple events and each event will have multiple members.
Normalizing this data would mean a third table to associate members with events participated in and to record their place results.
Results
MemberID
EventID
Place
The score is a calculated value and would not be field in table.