SUM adds a whole column of values.
SUM is an aggregate function it is normally used with GROUP BY.
SELECT region, SUM(population) FROM bbc GROUP BY region
GROUP BY region