Invitation
What if you need one total from a whole column?
In Topic 8, you learned how a running total grows one value at a time.
In SQL, SUM performs that total for you. It adds all the numeric values in the chosen field and returns one answer.
SUM totals a numeric field.
How SUM works
81 · 65 · 90 · 72
↓
SUM(Score)
↓
308