标签:cat text class 应该 插入 ring bst div tab
hemu780924大哥的代码虽然能用,但是有个致命的缺陷,
比如"123是ABC",如果想找出XYZ并替换成OPQ,因为在"123是ABC"找不到XYZ,然后命令就会在"123是ABC"前面插入XYZ,这个不是我想要的啊!
update table1 set body =
concat(
SUBSTRING(body ,1,position(‘ABC‘ in body )-1),
‘123‘,
substring(body ,position(‘ABC‘ in body )+length(‘ABC‘))) where body like ‘%ABC%‘
这里替换第一次的ABC ,没有ABC就不替换了
标签:cat text class 应该 插入 ring bst div tab
原文地址:https://www.cnblogs.com/lxwphp/p/9068216.html