MySQL字符串替换

2021-11-20 00:00:00 replace mysql

我有一列包含 url (id, url):

I have a column containing urls (id, url):

http://www.example.com/articles/updates/43
http://www.example.com/articles/updates/866
http://www.example.com/articles/updates/323
http://www.example.com/articles/updates/seo-url
http://www.example.com/articles/updates/4?something=test

我想将更新"一词更改为新闻".可以用脚本来做到这一点吗?

I'd like to change the word "updates" to "news". Is it possible to do this with a script?

推荐答案

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

现在的行就像

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

将是

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

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

相关文章