hi guys i need help!
i've a table sql like this:
id | in | out
1 | 32 | 23
2 | 4 | 0
3 | 10 | 3
i need a result like this:
id | in | out| cumulative
1 | 32 | 23 | 9
2 | 4 | 0 | 13
3 | 10 | 3 | 20
is possible to do in sql ?? how? thanks