Just added: Embedded C From Zero
PostgreSQL
-- This throws - fix it. It should return each region and its total amount sold.
SELECT region, rep, SUM(amount) AS total FROM sales GROUP BY region;