在MySQL中用正则表达式替换数据库中的内容的方法

数据库评论287字数 83阅读模式

将comment表中的author_url包含www.sohu.com的记录,其中的sohu替换为sina,一个语句搞定~
update comment set author_url=REPLACE(author_url,'sohu','sina') where author_url REGEXP 'www.sohu.com';

带IF判断的复杂替换很文博客-https://www.zhenjiekeji.com/62877.html

update comment set url=IF(url REGEXP 'test.yahoo.com.cn',REPLACE(url,'www1.sohu.com','www.sina.com'),REPLACE(url,'www2.yahoo.com','www.sina.com')) where 1=1;很文博客-https://www.zhenjiekeji.com/62877.html

很文博客-https://www.zhenjiekeji.com/62877.html很文博客-https://www.zhenjiekeji.com/62877.html
weinxin
我的微信
微信号已复制
扫一扫更精彩
大家的支持是我更新的动力!!!
匿名

发表评论

匿名网友