SyntaxFix
Write A Post
Hire A Developer
Questions
The following query replace each and every a character with a b character.
a
b
UPDATE YourTable SET Column1 = REPLACE(Column1,'a','b') WHERE Column1 LIKE '%a%'
This will not work on SQL server 2003.