SQL error: 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 12
Original query:
select
jc.player_id AS player_id,
p.steam_id AS steam_id,
p.current_name as name,
p.icon as icon,
sum(jc.points) AS points,
sum(jc.frags) AS frags,
sum(jc.deaths) AS deaths,
avg(jc.ping) AS ping,
sum((jc.timestamp_end - jc.timestamp_start)) AS duration
from players p right join valid_join_classes jc on (jc.player_id = p.player_id)
where (jc.timestamp_end > jc.timestamp_start) and jc.player_id=