Du skal bruge en GROUP BY
og en samlet funktion som count
eller sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`
Du skal bruge en GROUP BY
og en samlet funktion som count
eller sum
SELECT SCORE_PERSON_ID, sum(SCORE_VOTE) as score
FROM table
GROUP BY `SCORE_PERSON_ID`