Hi all,
I have a Database for tracking team games. One table has fields :
GAME_ID, home_team_ID,away_team_ID,winner_team_ID
And my lookup table has fields :
team_ID,Team_Name
I want to create a query that will return the GAME_ID and home and away team NAMES, but how do you get SQL to lookup multiple values in the lookup table ? I can only return a single team name ???
Buzz