I have a simple SQL statement that does not seem to work. I want the of table match_team ("match_id") on the table match ("id").
Therefore I wrote the following INNER JOIN STATEMENT
SELECT * FROM match_team INNER JOIN match ON match_team.match_id = match.id
This throws an error however. Any thoughts on what might go wrong here?