I have a database and a certain column has multiple spaces sometimes which need to reduced to one space, like this one for example between Condo and Alki
West Seattle. Beach Dr. Condo Alki Beach. Seattle
Now, in the beginning I had far more and I ran the following statement and got rid of them, however a couple ones like the one mentioned above do not seem to get formatted for some reason. This is the code I am using:
UPDATE [csv].[Listings]
SET name = REPLACE(name, ' ', ' ')
WHERE name LIKE '% %'