chase balance

This commit is contained in:
Paul Trowbridge 2024-08-28 12:50:42 -04:00
parent ab15e8cc2b
commit c56f59045a

View File

@ -0,0 +1,14 @@
\timing
SELECT
r.id
,r.logid
,r."Type"
,r."Trans Date"
,r."Post Date"
,r."Description"
,-r."Amount" "Amount"
,SUM(-r."Amount") OVER (ORDER BY r."Post Date" asc , r.id) + 374.23 balance
FROM
tpsv.chase_default r
ORDER BY
r."Post Date" desc