You need to use SELECT and INNER JOIN , then you can use the WHERE to filter on GameID 2.
SELECT ID_Winner, Name, Lastname, Player_FK FROM Winner INNER JOIN Player on Player.ID_Pplayer = Winner.Player_FK INNER JOIN Game ON Game.ID_game = Player.Game_FK WHERE Game.ID_game = 2
source share