Hi All,
I need to update a column which might have a value or might not have a value. If I just update col_b I will loose my old value. How can I keep the old value and just append a new value to col_b?
Basically let say I have col_a and col_b.
col_a col_b
1 a
2 f
3
Result
col_a col_b
1 a appended value
2 f appended value
3 appended value
Any thoughts on this will help.
Thank you!
I need to update a column which might have a value or might not have a value. If I just update col_b I will loose my old value. How can I keep the old value and just append a new value to col_b?
Basically let say I have col_a and col_b.
col_a col_b
1 a
2 f
3
Result
col_a col_b
1 a appended value
2 f appended value
3 appended value
Any thoughts on this will help.
Thank you!