Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-String ersetzen

UPDATE your_table
SET your_field = REPLACE(your_field, 'articles/updates/', 'articles/news/')
WHERE your_field LIKE '%articles/updates/%'

Jetzt Zeilen, die wie

waren

http://www.example.com/articles/updates/43

wird

sein

http://www.example.com/articles/news/43

http://www.electrictoolbox.com/mysql-find-replace-text/