I want to add two columns values of my table E.g:
Id Distance Duration ETA_Distance ETA_Duration
1 0 0 20 60
2 14 20 NULL NULL
3 12 10 NULL NULL
4 15 70 NULL NULL
Considering the table above, I want a SQL query which give me the result like below:
Id Distance Duration ETA_Distance ETA_Duration
1 0 0 20 60
2 14 20 34 80
3 12 10 46 90
4 15 70 61 160