Mysql
 sql >> Database >  >> RDS >> Mysql

ottenere la SOMMA di ogni Persona dal PersonID

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`