Is it possible to make a query that returns a field as an accumulated value of the previous posts, plus whatever value is saved in the post itself?
The table holds a date field and the value.
I want the query to return the result sorted by date like so:
Date, value, totalvalue
12/03/2005, 1, 1
13/03/2005, 3, 4
14/03/2005, 2, 6
...
Can someone help with me with the part that comes before “as totalvalue” in the SQL sentence?
Thanks

The table holds a date field and the value.
I want the query to return the result sorted by date like so:
Date, value, totalvalue
12/03/2005, 1, 1
13/03/2005, 3, 4
14/03/2005, 2, 6
...
Can someone help with me with the part that comes before “as totalvalue” in the SQL sentence?
Thanks