Simple but very useful MySQL trick…
UPDATE `table` SET `field` = REPLACE (
`field` ,
‘{string to find}’,
‘{replacement string}’
)
sam keen's corner of the web
Simple but very useful MySQL trick…
UPDATE `table` SET `field` = REPLACE (
`field` ,
‘{string to find}’,
‘{replacement string}’
)