mysql批量替换html特殊标签语法介绍(wordpress模板)

纸扎戏偶

mysql如何批量替换html特殊标签语法,下面web建站小编给大家详细介绍一下具体实现代码!

具体代码如下:

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)   ),   '' ); 
文章版权声明:除非注明,否则均为我爱教程术原创文章,转载或复制请以超链接形式并注明出处。