Hi,
I am in the process of creating a sporting schedule schema.
Here is what I have so far -
schedule (schedId(pk), hometeamid(fk), awayteamid(fk), date, start, end, location, ....)
teams (teamid(pk), teamname, leagueid(fk), ....)
league (leagueid(pk), sportid(fk), ....)
sports (sportsid(pk), name, ....)
Any thoughts on this design?
Thanks in advance.