I have a table with dates and follower growth for each date and want to make a new column that depicts total followers gained.
How can I insert a new column that basically adds the 'new followers' column in to a summation series?
date | new followers
-----------------------
1/1/15 | 1
1/2/15 | 3
1/3/15 | 5
1/4/15 | 4
1/5/15 | 3
New table would look like
date | new followers | total followers gained
------------------------------------------------
1/1/15 | 1 | 1
1/2/15 | 3 | 4
1/3/15 | 5 | 9
1/4/15 | 4 | 13
1/5/15 | 3 | 16