MySQL字符串替换 [英] MySQL string replace

查看:32
本文介绍了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/

这篇关于MySQL字符串替换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆