Thanks! It really worked, when I found that function.
Before that I searched for "replace" in the documentation, but found that replace is an operation like insert, only it replaces the rows in case of a duplicate key or something like that. And I didn't even search more to find out that there is such a function replace(). :)
So, I successfully managed to replace text with this kind of query:
update tableName
set fieldName=replace(fieldName,"oldString","newString")
Thanks,
Janis
|