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