mysql批量替换html特殊标签语法介绍(wordpress模板)
mysql如何批量替换html特殊标签语法,下面编程教程网小编给大家详细介绍一下具体实现代码!
具体代码如下:
update wp_posts set post_content = replace(
post_content,
substring(
post_content,
locate('<p><a href=', post_content),
locate('</a></p>', post_content) + LENGTH('</a></p>') - locate('<p><a href=', post_content)
),
''
);
以上是编程学习网小编为您介绍的“mysql批量替换html特殊标签语法介绍(wordpress模板)”的全面内容,想了解更多关于 mysql 内容,请继续关注编程基础学习网。