How to Replace a text in SQL Server Table Column?
by Dinesh[ Edit ] 2014-10-08 18:22:09
Do you want to replace a text in SQL Server table?
Here is the SQL Statement that do this:
UPDATE [TableName] SET [ColumnName] = Replace([ColumnName],'OldText','NewText');