OK, i've got 2 tables. One table (GAME) has a game_id, away_team_id, and home_team_id. The other table (TEAM)has a team_id and a teamname. The home_team_id from the GAME table matches a team_id from the TEAM table and the away_team_id should match a team_id also. I want to create a query that would display game_id, home_team_id, teamname, away_team_id and teamname. Is that clear what I'm asking for? I'm not even sure how to ask the question.
GAME.game_id, GAME.home_team_id, TEAM.teamname that matches the home_team_id, GAME.away_team_id, TEAM.teamname that matches the away_team_id.
I don't know. If anyone can decipher anything out of this I'd appreciate it.