Hai bisogno di un GROUP BY
e una funzione aggregata come count
o sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`
Hai bisogno di un GROUP BY
e una funzione aggregata come count
o sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`