I have these tables:
- Games (game_id,game_name, etc)
- Teams (teams_id,team_name, etc)
- Players (players_id, player_name, etc.)
junction tables:
- games_teams (game_id,teams_id)
- teams_players (teams_id, player_id)
Basically for every game I want to see the number of teams and the number of players.
Game name - Number of teams - number of player
Using inner join I managed to join games with teams but not with players. I believe it involves multiple select statements?