I have the following example for which I'd like to calculate totals at each available time:
timestamp device value
2010-12-30 00:00 1 5
2010-12-30 00:05 1 5
2010-12-30 00:05 2 10
2010-12-30 00:13 1 23
2010-12-30 00:16 3 11
2010-12-30 00:30 1 22
2010-12-30 00:40 2 55
2010-12-30 00:40 3 12
2010-12-30 00:45 2 12
2010-12-30 10:00 3 33
At the end the result should look like this:
timestamp Total
2010-12-30 00:00 5
2010-12-30 00:05 5
2010-12-30 00:05 15
2010-12-30 00:13 33
2010-12-30 00:16 44
2010-12-30 00:30 43
2010-12-30 00:40 88
2010-12-30 00:40 89
2010-12-30 00:45 46
2010-12-30 10:00 67
The idea is that for each timestamp I need to get the last value for each device and then SUM up the values.
For example:
For timestamp 2010-12-30 00:13 I'd need to take the following entries and SUM them:
2010-12-30 00:05 2 10
2010-12-30 00:13 1 23
The total would then be 26. For timestamp 2010-12-30 10:00 I'd need to take the following lines:
2010-12-30 00:30 1 22
2010-12-30 00:45 2 12
2010-12-30 10:00 3 33
Which gives 67 as the total.
My idea was to create a query which would select latest values for each device for each timestamp, but I'm stuck already at selecting the latest values for each device for a specific timestamp, so I'd kindly ask for some support.
Thanks! Mark