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 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:mysql批量替换html特殊标签语法介绍(wordpress模板)
基础教程推荐
猜你喜欢
- 一篇文章带你弄清楚Redis的精髓 2023-07-12
- Python3.10动态修改Windows系统本地IP地址 2023-07-27
- MySQL系列理解运用union(all)与limit及exists关键字教程 2023-08-09
- 详解MySQL索引原理以及优化 2024-02-15
- 如何去优化减负站点呢?优化系统架构的五种常用方法 2023-12-29
- 常见数据库mysql、oracle和DB2中is null 和 =null 的区别 2024-04-28
- Redis SYNC命令 2024-04-05
- 点赞功能使用MySQL还是Redis 2023-08-09
- Magento2使用Redis进行页面缓存或会话存储。 2024-04-20
- mysql远程登录root账户报错1045的解决 2023-07-26