沃梦达 / 编程技术 / 数据库 / 正文

mysql语法批量替换文章内容

如何利用mysql语法批量替换文章内容,下面编程教程网小编给大家详细介绍一下替换语句的写法!

mysql语法:

update `post` set body = replace(body , 'old', 'new');

参数介绍:

post:表名

body:文章内容列

replace():替换函数

old:需要替换的内容

new:替换为新内容

以上是编程学习网小编为您介绍的“mysql语法批量替换文章内容”的全面内容,想了解更多关于 mysql 内容,请继续关注编程基础学习网。

本文标题为:mysql语法批量替换文章内容

基础教程推荐