MySQL Inner Join Between Two Tables
问题 I'm trying to JOIN two tables in MySQL . Here is my table: Games Table : GameID Date/Time PlayerOneID PlayerTwoID 13 12/10/2013 10:53:29 PM 1 2 14 12/10/2013 10:57:29 PM 1 2 15 12/10/2013 10:58:29 PM 2 1 I have another table contain the ID of a player and that players name. Players Table : 1 Dan 2 Jon I'd like the resulting table to look like the following: GameID Date/Time PlayerOneID PlayerTwoID 13 12/10/2013 10:53:29 PM Dan Jon 14 12/10/2013 10:57:29 PM Dan Jon 15 12/10/2013 10:58:29 PM