consider these tables:
leagues [ id,name ]
teams [ id,name,leaguesid]
FK: (leaguesid) -> (leagues.id)
AK: (leaguesId) UNIQUE /teams can be in one league/
players [id,name]
players_teams [playersid,teamsid]
FK: (playersid) -> players.id, teamsid -> teams.id
AK: (playersid,teamsid) UNIQUE /player can not be on same team twice/
this works pretty well, but i need a constraint that will prevent the same player from being in the same league more than once. can this be done without creating a players_league table or adding leagueid to this table? those options seem to add denormalization/overhead since i can already determine any leagues a player is in based on their team.
thanks