首页 > 数据库 > MySQL > 正文

mysql与正则表达式

2024-07-24 12:40:03
字体:
来源:转载
供稿:网友

将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.wujianrong.com/archives/2007/01/mysql_8.html

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表