Oct 14, 2004 #1 Evil6 Technical User May 6, 2004 59 PT I'm building a db to keep record of basketball games. I have built some tables: Teams Referees Place Building a form, how can I select both teams from the same table, as well as the 3 referees for that match? Hope this makes sense... Thank you
I'm building a db to keep record of basketball games. I have built some tables: Teams Referees Place Building a form, how can I select both teams from the same table, as well as the 3 referees for that match? Hope this makes sense... Thank you
Oct 14, 2004 #2 KenReay Programmer Aug 15, 2002 5,424 GB Hi Think you are going to need at least one more table (tblMatches) tblMatches MatchId (PK) HomeTeamId AwayTeamId DateOfMatch you also mention having three referees per Match, in which case you probably need another table: tblMatchReferrees MatchId ) Prime RefereeId ) Key Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK Upvote 0 Downvote
Hi Think you are going to need at least one more table (tblMatches) tblMatches MatchId (PK) HomeTeamId AwayTeamId DateOfMatch you also mention having three referees per Match, in which case you probably need another table: tblMatchReferrees MatchId ) Prime RefereeId ) Key Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK
Oct 14, 2004 Thread starter #3 Evil6 Technical User May 6, 2004 59 PT Thank you for your post, KenReay. I see your point. Do you think I should use the same approach to the teams table? I have the same problem as with the referees... Also, the entry form for the data should it be constructed from a query of all these fields? Once again, thanks. Upvote 0 Downvote
Thank you for your post, KenReay. I see your point. Do you think I should use the same approach to the teams table? I have the same problem as with the referees... Also, the entry form for the data should it be constructed from a query of all these fields? Once again, thanks.