-
You need to apply the Aggregate function sum to perform the addition in your MySQL query.
Just type in
SELECT SUM(score) as total_score FROM race;
For example, you name the column that […]
You need to apply the Aggregate function sum to perform the addition in your MySQL query.
Just type in
SELECT SUM(score) as total_score FROM race;
For example, you name the column that […]