Compare commits

...

2 Commits

Author SHA1 Message Date
c56f59045a chase balance 2024-08-28 12:50:42 -04:00
ab15e8cc2b huntington balance 2024-08-28 12:42:56 -04:00
2 changed files with 22 additions and 0 deletions

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

View File

@ -0,0 +1,8 @@
\timing
SELECT
r.*
,SUM(r."Amount") OVER (ORDER BY r."Date" asc , r.id) + 29909.75 balance
FROM
tpsv.hunt_default r
ORDER BY
r."Date" desc