~singpolyma/jmp-schemas

ref: a47fa1303f59c57055d979083752f5ac65458078 jmp-schemas/deploy/balances.sql -rw-r--r-- 161 bytes
a47fa130Stephen Paul Weber Create balances view 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;