Hi, I need some help from you all to prepare a query. Lets say, I have a Table "Account" with columns "AccountID" (unique) and "Name" along with some other columns. The Name column has some values with a comma ( , ) character in it (for e.g. Steven,Smith) which I now want to replace with a space. I can find all such entries containing a comma in Name with a select query, however want to know if there is any update query which I can use to replace this comma character with a space character.
TIA