问题描述
update base_news set content=replace(content,REGEXP '<a[^>]+>示例</a>','<a href=" http://www.xxx.com/xxx/">示例</a>') where contentid='888';
解决方案
应该不行REGEXP只能返回true,false不能返回匹配的值,replace只支持字符不支持正则的
时间: 2024-10-21 18:11:52
update base_news set content=replace(content,REGEXP '<a[^>]+>示例</a>','<a href=" http://www.xxx.com/xxx/">示例</a>') where contentid='888';
应该不行REGEXP只能返回true,false不能返回匹配的值,replace只支持字符不支持正则的