I'm working on creating several simultaneous cross-country driving routes that span the course of 3 weeks. I have separate databases for Teams, Venues, Weeks, and Routes, and have most of the relations set up, but I'm wondering if there is a more efficient way to go about the Routes set up. (FIY in my experimenting, I may have created unneeded relations...whoops)
In my Venues table, I have 3 columns with checkboxes that indicate which week that venue will be visited, as well as a relation to the Weeks table and Team table.
However on my Routes table, I have 3 columns for the venue that will be visited each week.
Ex.
R1 Ven1 Ven2 Ven3
R2 Ven4 Ven5 Ven5
Currently, these venue columns are relations to the Venue database, but I figure there's got to be a way to automate it based on which checkboxes are checked in my Venues table...
Any help would be appreciated!
Thank you