MySQL字符串替换我有一列包含URL(id,url):http://www.example.com/articles/updates/43http://www.example.com/articles/updates/866http://www.example.com/articles/updates/323http://www.example.com/articles/updates/seo-urlhttp://www.example.com/articles/updates/4?something=test我想把“更新”改为“新闻”。用脚本可以做到这一点吗?
3 回答
慕沐林林
TA贡献2016条经验 获得超9个赞
加上WHERE条款-
update tabelName set columnName=REPLACE(columnName,'from','to') where condition;
在没有地方条款的情况下-
update tabelName set columnName=REPLACE(columnName,'from','to');
注意:以上查询如果直接用于更新表中的记录,如果您希望在SELECT查询中进行查询,且数据不应在表中受到影响,则可以使用以下查询-
select REPLACE(columnName,'from','to') as updateRecord;
添加回答
举报
0/150
提交
取消