vote up 1 vote down star

Hello guys! I've ran into a design issue; in a project, i have three tables: League, Players, and an association table LeagueToPlayers that maps multiple to multiple connections between the first two (as a player can simultaneously play in two or more leagues):

League        Players              LeagueToPlayers
Id Name       Id Alias             LeagueId  PlayerId
=--------     ------------         ----------------
1  League A   1  Longcat           1        1
2  League B   2  Leeroy Jenkins    1        2
3  League C   3  xyz               2        1
4  League D   4  qw3rty            2        3
              5  Myrkgrav          3        2
                                   4        1
  (...)           (...)            4        3
                                   5        1

                                     (...)

My problem is that i now have to map a player to player relation. From my perspective, two things can be done: either an additional field is introduced to the Player table (mapping another PlayerId) - which is a pretty bad bet because in all odds this will be a 1..* relation - or another association table is created (not really loving the idea, but i guess there is no other way).

I'd like to hear your perspectives regarding this issue... any bright ideas?

Regards, Hal

EDIT: as mentioned in the comments, this is a metaphor. The type of objects present in the "Player" table varies a LOT (think two hundred distinct types) and they really must be mapped this way. The objects in the Player table may reference one another because they end up participating in the same process and, as such, they are related with one another. This connection is definitely 1..*

flag

What possible player-to-player relationship is this? "Opposed To"? "Scored Against"? "Manger Of"? "Ranked The Same As"? Relationships carry meaning. The Meaning defines how this should be implemented. What is the meaning? – S.Lott Jun 14 at 18:09
Funny, it's usually Players on Teams, and Teams in Leagues. If that's what you're trying to accomplish with this new requirement, I'd argue that your naming convention is flawed. I'd much prefer 1:m for Player-to-Team and 1:n for Team-to-League. – duffymo Jun 14 at 18:15
Should have been 1:n for League-to-Team. My mistake. – duffymo Jun 14 at 18:16
Its a metaphor, but you can think of it as in "Friends". Basically, certain objects in the Player table may reference another ones in that very table. – Hal Jun 14 at 18:20
@Hal: "may reference" is too weak to design around. For something that vague, all designs are good designs. Please update your question with some hint as to what the association among players might be. – S.Lott Jun 14 at 18:24

2 Answers

vote up 1 vote down check

If I had to maintain your DB after you were hypothetically gone, I'd pray you'd go with another correlation table mapping player to player - for good normalization practice, consistency and ease of maintenance.

This solution is also more flexible in the sense that it probably puts you in a better position if you need for whatever reason to extend the model.

link|flag
Ahah :) ok, thanks for the input – Hal Jun 14 at 18:33
always a pleasure! – JohnIdol Jun 14 at 18:54
vote up 1 vote down

If it's 1:*, then put it on the * side (ex. parent_id on the child row for a hierarchy).

If it's *:*, use another correlation table.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.