I want to replace all the values within a column that are:
Boston, MA (2 space) with:
Boston, MA (1 space) I have gotten as far as:
select [Location], replace(replace(replace([Location],' ','<>'),'><',''),'<>',' ') from [Table] How can I replace the values in the [location] column with the result of the query above?
note: there are other values in the [location] column, eg.
Hong Kong London, UK
replace(field, 'spacespace', 'space')?