I have a table as follows: Table1
Col1 Col2 Col3
1 A 10
2 B 20
3 C 30
4 D 40
5 E 50
I want output as follows:
Output :
Col1 Col2 Col3 Row-Wise-Sum
1 A 10 10
2 B 20 30
3 C 30 60
4 D 40 100
5 E 50 150