Compare commits

...

2 Commits

Author SHA1 Message Date
88b0760e6d reporting 2024-08-29 13:34:50 -04:00
eb63f3ce72 combine 2024-08-28 12:53:33 -04:00
3 changed files with 67 additions and 3 deletions

View File

@ -1,8 +1,8 @@
\timing
SELECT
r.*
,SUM(r."Amount") OVER (ORDER BY r."Post Date" asc , r."Description") + 1061.1 + 22.40 balance
,SUM(r."Amount") OVER (ORDER BY r."Post Date" asc , r."Description") + 1083.50 balance
FROM
tpsv.dcard_default r
tpsv.dcard_mapped r
ORDER BY
r."Post Date" desc

View File

@ -3,6 +3,6 @@ SELECT
r.*
,SUM(r."Amount") OVER (ORDER BY r."Date" asc , r.id) + 29909.75 balance
FROM
tpsv.hunt_default r
tpsv.hunt_mapped r
ORDER BY
r."Date" desc

View File

@ -0,0 +1,64 @@
with
dcard AS (
SELECT
'dcard' srce
,r.id
,r.logid
--,r."Trans. Date"
,r."Post Date"
,r."Description"
,r."Amount"
,r."Category"
,r."Party"
,r."Reason"
,SUM(r."Amount") OVER (ORDER BY r."Post Date" asc , r."Description") + 1083.50 balance
FROM
tpsv.dcard_mapped r
ORDER BY
r."Post Date" desc
)
,hunt as (
SELECT
'hunt' srce
,r.id
,r.logid
--,r."Reference Number"
--,r."Payee Name"
,r."Date"
,r."Memo"
,r."Amount"
,r."Cateogry Name"
,r."Party"
,r."Reason"
,SUM(r."Amount") OVER (ORDER BY r."Date" asc , r.id) + 29909.75 balance
FROM
tpsv.hunt_mapped r
ORDER BY
r."Date" desc
)
,chase AS (
SELECT
'chase' srce
,r.id
,r.logid
--,r."Trans Date"
,r."Post Date"
,r."Description"
,-r."Amount" "Amount"
,r."Type"
,null::text "Party"
,null::text "Reason"
,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
)
,stacked AS (
SELECT * FROM dcard
UNION ALL
SELECT * FROM hunt
UNION ALL
SELECT * FROM chase
)
select * from stacked order by "Post Date" desc