SUM([DISTINCT] expr)
SELECT SUM(amount) FROM Payments;
SELECT good, SUM(unit_price) FROM Payments GROUP BY good;