Quantcast
Channel: Active questions tagged cte - Database Administrators Stack Exchange
Viewing all articles
Browse latest Browse all 207

Getting sum for each day based on most recent timestamp entry for each entity

$
0
0

I have a table that contains an ID, timestamp, and integer. Each row is a "snapshot" of the entity at a given time:

TableA

IDtimestampnum
A2024-02-045
B2024-02-043
C2024-02-078
A2024-02-073

My goal is to get a table of all days from the last year and show the sum of num for that given day. The sum for each day though should look at the most recent timestamp for each entity. Then if there's no data for a given day, just forward-fill until reaching the next timestamp. So the result would be:

Goal

daytotal
2024-02-048
2024-02-058
2024-02-068
2024-02-0714

2024-02-05 and 2024-02-06 are filled from the most recent row because there is no timestamp data for them, and 2024-02-07 is 14 because entity A now has "3" instead of "5", and entity "C" has been added (3 + 8 + 3).

My approach has been to start with a recursive CTE for the days of the last year, and then left join on another CTE that contains the aggregated data.

WITH DateSequence AS (  SELECT CAST(GETDATE() AS DATE) AS [Date]  UNION ALL  SELECT DATEADD(DAY, -1, [Date])  FROM DateSequence  WHERE DATEADD(DAY, -1, [Date]) > DATEADD(DAY, -365, GETDATE())),Aggregator AS (  /* for each day in TableA, sum the most recent `num` columns for each entity */)SELECT DateSequence.[Date], Aggregator.total FROM DateSequence LEFT JOIN Aggregator ON Aggregator.date = DateSequence.[Date]ORDER BY DateSequence.[Date]OPTION (MAXRECURSION 365);

The two parts I haven't worked out are the summing and the forward-filling. I'm pretty sure I need to use window functions, and need a way to say: for each day in TableA, sum the most recent num columns for each entity.


Viewing all articles
Browse latest Browse all 207

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>