I have a table like this one:

SELECT value FROM table;

value
1
3
13
1
5

I would like to add an accumulator column, so that I have this result:

value  accumulated
1      1
3      4
13     17
1      18
5      23

How can I do this? What's the real name of what I want to do? Thanks

link|improve this question

75% accept rate
feedback

2 Answers

try this way:

select value,
(select sum(t2.value) from table t2 where t2.id <= t1.id ) as accumulated
from table t1

but if it will not work on your database, just add order by something

select value,
(select sum(t2.value) from table t2 where t2.id <= t1.id order by id ) as accumulated
from table t1
order by id

this works on an oracle ;) but it should on a sqlite too

link|improve this answer
Had it worked on a table without id for ordering (or ordering after another criterion, without possibility of strict < or unique <= comparison), I would have accepted this answer... – moala Sep 24 '10 at 13:43
You can do tthis with an analytic query when you use Oracle, no self joins needed, see orafaq.com/node/55. Sadly sqlte doesn't support analytical queries. – TTT Sep 25 '10 at 8:42
feedback

The operation is called a running sum. SQLite does not support it as is, but there are ways to make it work. One is just as Sebastian Brózda posted. Another I detailed here in another question.

link|improve this answer
or "running total". Thx. – moala Sep 27 '10 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.