Can u help me how to insert Column A data into col3 at place of null.
See the attachment.
TABLE TAB1
--------------
col1 col2 col3
5 7 NULL
8 11 NULL
3 6 NULL
2 12 NULL
TABLE TAB2
-----------
ColA CoB
7 5
18 8
24 3
36 2
Desire Output Like
col1 col2 col3
5 7 7
8 11 18
3 6 24
2 12 36
This is called commutative sum.