Here's the issue. My query:
UPDATE `table` SET `column` = replace(`column`,'123','456');
Is not going to work. Here's why:
The numeric string '4123' now becomes '4456'.
What I would like is for only EXACT matches (column value equals exactly '123') to be replaced. Is this not possible with a simple UPDATE SET = REPLACE() query??