I have a table like this one:
SELECT value FROM table;
value 1 3 13 1 5
I would like to add an accumul
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.