我有一列包含 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/
这篇关于MySQL字符串替换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!