Hi,
Here's a query I am using :
UPDATE MyTable
SET ColumnName = REPLACE(ColumnName, 'searchtext' , 'replacetext' )
How do I modify this query so that the replacements are made only on whole words? There can be multiple instances of 'searchtext' string.
Is there any simple implementation of this?
Thanks
Start Free Trial