I\'ve got a table with two columns, ID and Value. I want to change a part of some strings in the second column.
ID
Value
Example of Table:
Try to remove % chars as below
%
UPDATE dbo.xxx SET Value = REPLACE(Value, '123', '') WHERE ID <=4