gpt4 book ai didi

SQL:用 SQL 查找和替换?

转载 作者:搜寻专家 更新时间:2023-10-30 21:54:22 25 4
gpt4 key购买 nike

我有一个 MySQL InnoDB 数据库。

我在“article”表中有一个名为 url 的列需要更新。

存储在article.url =

/blog/2010/article-name
/blog/1998/the-article-name
/blog/...

我需要将 /blog/ 更改为 /news/。 (例如现在 article.url = '/news/...')

article.url 列中将 "/blog/" 替换为 "/news/" 需要什么 SQL?

最佳答案

update url
set article = replace(article, '/blog/', '/news/')
where article like '/blog/%'

关于SQL:用 SQL 查找和替换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3206205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com