I am currently developing a Fantasy Football website using asp.net and an SQL Server 2008 database.
Below are my tables thus far;
General Data
CLUB - Club_Id, Club, Abbr, Kit_Id
PLAYER - Player_Id, Player, Club_Id, Position_Id, Side_Id
POSITION - Position_Id, Position
SIDE - Side_Id, Side
KIT - Kit_Id, MIMEType, Kit
Season & Round Data
SEASON - Season_Id, Season(e.g. "2009/2010"), StartDate, EndDate
ROUND - Round_Id, Round(e.g. "round 1")
Fixture Data
FIXTURE - Fixture_Id, Season_Id, Round_Id
FIXTURE_DATE - FixtureDate_Id, Fixture_Id, Date
What I want to achieve is a way in which I can create matches using the following;
A club that plays at HOME
A club that plays AWAY
A FIXTURE_DATE for the specific match
Then subsequently, I want to achieve the following from ;
Line-Ups for the HOME club and for the AWAY club
How can I achieve this? Help would be much appreciated