在MySQL中用正则表达式替换数据库中的内容的方法
程序员文章站
2023-11-25 15:08:46
ps:下面是转过来的,用于记录下,这个不是正则的初衷,只是用了regexp而已,正则的更灵活更方便 将comment表中的author_url包含www.sohu.com的...
ps:下面是转过来的,用于记录下,这个不是正则的初衷,只是用了regexp而已,正则的更灵活更方便
将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判断的复杂替换
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;
将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判断的复杂替换
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;
上一篇: C# 中如何取绝对值函数