Anda memerlukan GROUP BY
dan fungsi agregat seperti count
atau sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`
Anda memerlukan GROUP BY
dan fungsi agregat seperti count
atau sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`