I have a table with two cols like as follows below
ID SAL
1 1000
2 2000
3 3000
4 4000
5 5000
I'd like to have an output like that:
ID SAL
1 1000
2 3000
3 6000
4 10000
5 15000
*/ How can we achieve this without using case statements ?