SELECT
m.*,
c.club_name AS club_name,
c.club_username AS club_username,
c.club_id AS club_id,
c.club_logo AS club_logo
FROM
match_details AS m
JOIN
club AS c
ON
c.club_id = m.club_id
WHERE
m.match_id =
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 14
sql_query: