I have the following columns in a table:
SCORE_ID SCORE_PERSON_ID SCORE_VOTE
The SCORE_PERSON_ID is a variable. I need to sum the SCORE_VOTE
how about
select sum(SCORE_VOTE) as score from TABLE group by SCORE_PERSON_ID
this is sum them up for each person
select sum(SCORE_VOTE) as score from TABLE where SCORE_PERSON_ID = 1