SELECT player.idplayer, player.prenom, player.nom, boxscores.minutes, boxscores.tirreussi, boxscores.tirtente,
boxscores.troisptsr, boxscores.troisptst, boxscores.freethr, boxscores.freetht, boxscores.reboff,
boxscores.rebdeff, boxscores.rbs, boxscores.assist, boxscores.steal, boxscores.turnover,
boxscores.block, boxscores.points, boxscores.evaluation
FROM boxscores, player
WHERE boxscores.ref_game=65231 AND player.idplayer=boxscores.idplayer AND boxscores.team=
ORDER BY team, evaluation DESC
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY team, evaluation DESC' at line 7