In continuation with previous question, I need to display score below query does not work
Question is here : Question 1
INSERT INTO TblScore (ScoreID, TeamID, MatchID, Score) VALUES
(1, 1, 1, 5),
(2, 2, 1, 6),
(3, 4, 2, 15),
(4, 3, 2, 26);
Score query does not work
$query="SELECT
m.MatchID,
m.MatchDate,
m.Team1ID,
m.Team2ID,
s.TeamID,
s.MatchID,
T1.TeamName as TeamName1,
T2.TeamName as TeamName2,
T1S.Score as Team1Score,
T2S.Score as Team2Score
FROM TblMatch m
JOIN TblTeam T1 ON m.Team1ID = T1.TeamID
JOIN TblTeam T2 ON m.Team2ID = T2.TeamID
JOIN TblScore s ON m.Team1ID = T1S.TeamID
JOIN TblScore s ON m.Team1ID = T1S.TeamID
JOIN TblScore s ON m.Team2ID = T2S.TeamID
WHERE s.MatchID=$mid
";
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…