Sie benötigen ein GROUP BY
und eine Aggregatfunktion wie count
oder sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`
Sie benötigen ein GROUP BY
und eine Aggregatfunktion wie count
oder sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`