更新列值,替换部分字符串

2021-11-20 00:00:00 sql mysql

我在 MySQL 数据库中有一个包含以下列的表

I have a table with the following columns in a MySQL database

[id, url]

网址如下:

 http://domain1.com/images/img1.jpg

我想将所有网址更新到另一个域

I want to update all the urls to another domain

 http://domain2.com/otherfolder/img1.jpg

保持文件名不变.

我必须运行什么查询?

推荐答案

UPDATE urls
SET url = REPLACE(url, 'domain1.com/images/', 'domain2.com/otherfolder/')

相关文章