Vous avez besoin d'un GROUP BY
et une fonction d'agrégation comme count
ou sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`
Vous avez besoin d'un GROUP BY
et une fonction d'agrégation comme count
ou sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`