Consider below table.
ID UserCount
----------- -----------
1 2
2 3
3 5
How can i add the another column (SequenceUserCount
) with UserCount
adding sequentialy.
Expected result:
ID UserCount SequenceUserCount
----------- ----------- ------------------
1 2 2
2 3 5
3 5 10