tps/dcard_bal.pgsql

14 lines
337 B
Plaintext
Raw Normal View History

2017-10-26 00:16:46 -04:00
\timing
SELECT
r.*,
rec->'id',
SUM(r."Amount") OVER (PARTITION BY srce ORDER BY r."Post Date" asc , rec->>'id' asc, r."Description") + 1061.1 + 22.40
FROM
tps.trans
LEFT JOIN LATERAL jsonb_populate_record(null::tps.dcard, rec) r ON TRUE
WHERE
srce = 'DCARD'
ORDER BY
r."Post Date" asc
,rEC->>'id' asc