Problems / Sum by Region / Editorial
A direct application of SUM() with GROUP BY:
SUM()
GROUP BY
region
SUM() ignores NULL values. If a group has only NULLs, the result is NULL (not 0).
Solve Sum by Region yourself →