a47fa130 Stephen Paul Weber
2 years ago
1 2 3 4 5 6 7 8 9 10 11 12
-- Deploy jmp:balances to pg BEGIN; CREATE VIEW balances AS SELECT customer_id, SUM(amount) AS balance FROM transactions GROUP BY customer_id; COMMIT;