Skip to content
Advertisement

Multiple rows in left join causing duplicate data

I have a rather complex MySQL query designed to retrieve teams and their league performance – from the following tables:

teams

division_season_team

team_point_adjustments

matches

Here’s the query:

Which results in the following, as an example:

The issue is with the first left join on team_point_adjustments. If 2 rows match, ie there are 2 rows corresponding to a team, the data returned is doubled – number of games played, wins, points etc are all double what they should be.

Have tried adding a group by clause for this sub query, but get a syntax error. Data is all correct if there is only one matching row in this left join.

Advertisement

Answer

Aggregate on the table matches and the table division_season_team before the joins which both must be LEFT joins just in case:

I hope I have no typos…

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement