I'm programming a Gaming Ladder/Tournament system.
Let's say I have the following tables:
PLAYERS
-------
* Player_ID
* Player_name
....
* Team_ID
TEAMS
-----
* Team_ID
* Team_Name
....
* Ladder_ID <--- Notice this one!
LADDERS
-------
* Ladder_ID
* Ladder_Name
* Ladder_Description
....
The question is about the 'Ladder_ID' field in the TEAMS table.
For instance, when a team joins 2 ladders/competitions, how do I store this?
Do I fill the LADDER_ID field in the TEAMS table with an ARRAY of values
(e.g. Ladder ID's 1, 3 & 4) ? Is there a better way to associate teams with
multiple Ladders?
Tia.
Posts: n/a