欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

mysql 正则表达式 查询 替换

shiping1 的头像
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; 

来自 http://www.jb51.net/article/8588.htm

普通分类: