I have a team schedule table that looks like this:
DBO.SCHEDULE
Game1_Time  |  Game1_Home_Team   | Game1_Away_Team 
===================================================
12:00:00    |         1          |         2
I want to replace the team values with their corresponding team that exists in another table:
DBO.TEAM
Team_Number  |  Team_Name
========================
    1        |  The Monsters
    2        |  Bug Bites
TRYING TO DO THIS: How do I replace the 1 & 2 in Schedule with "The Monsters" & "Bug Bites" in a query result?
Game1_Time  |  Home Team         | Away Team 
===================================================
12:00:00    |  The Monsters      |  Bug Bites
 
     
    