I've read how to perform a find-replace in mysql,
UPDATE `table_name`
SET `field_name` = replace(same_field_name, 'unwanted_text', 'wanted_text')
but i'm stuck with a particular string (my unwanted_text
), that is
<span style="font-size: 12pt;">
In order to prevent any unwanted result, i'm testing my query just finding the previous string.
I've tried to escape double quotes with \"
and even blank spaces with \
but it doesn't work.
<span\ style=\"font-size:\ 12pt;\">
How should be unwanted_text
?