Hi,
I have a table with the columns employee, address, city, state and zipcode. I have merged address, city, state, zipcode to a single column 'address' separating each field by comma.
My issue is, if one of the fields is null, an extra comma will be inserted. For example if city
is null the resulting value will be like address,,state,zipcode
. I need to remove this extra comma. How to do this? Please help.