tps/loan_bal.pgsql

15 lines
398 B
Plaintext
Raw Normal View History

2017-10-24 17:37:20 -04:00
\timing
2017-10-19 11:20:52 -04:00
SELECT
r.*,
SUM(r."Advances"+r."Adjustments"-r."Payments") OVER (PARTITION BY "Loan#" ORDER BY r."Post Date" asc ,rec->>'id' asc, r."Reference #" asc)
2017-10-19 11:20:52 -04:00
FROM
tps.trans
LEFT JOIN LATERAL jsonb_populate_record(null::tps.pnco, rec) r ON TRUE
WHERE
rec @> '{"Loan#":"606780191"}'
ORDER BY
r."Loan#"
,r."Post Date" asc
,rec->>'id' asc
2017-10-19 11:20:52 -04:00
,r."Reference #" asc