欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

replace MYSQL字符替换函数sql语句分享(正则判断)

程序员文章站 2023-12-19 16:13:28
复制代码 代码如下:update dede_addonsoft set dxylink=replace(dxylink, '.zip', '.rar') where aid...
复制代码 代码如下:

update dede_addonsoft set dxylink=replace(dxylink, '.zip', '.rar') where aid > 45553;

复制代码 代码如下:

update `table_name` set field = replace(field,'.rar','.7z');

table_name:要查询的表名,
field:表里的字段名,
replace(field,'.rar','.7z'); :正则匹配,把field字段里的 .rar 替换为 .7z

mysql正则表达式替换,字符替换方法

两句sql,都是字符替换,比较好用。

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;

update comment set author_url=replace(author_url,'sohu','sina') where author_url regexp 'www.sohu.com';

mysql replace函数替换字符串

mysql replace函数我们经常用到,下面就为您详细介绍mysql replace函数的用法,希望对您学习mysql replace函数方面能有所启迪。

最近在研究cms,在数据转换的时候需要用到mysql的mysql replace函数,这里简单介绍一下。

比如你要将表 tb1里面的 f1字段的abc替换为def

update tb1 set f1=replace(f1, 'abc', 'def');

replace(str,from_str,to_str)
在字符串 str 中所有出现的字符串 from_str 均被 to_str替换,然后返回这个字符串:
mysql> select replace('www.mysql.com', 'w', 'ww');
-> 'wwwwww.mysql.com'
这个函数是多字节安全的。

示例:
update `dede_addonarticle` set body = replace ( body,
'</td>',
'' );
update `dede_addonarticle` set body = replace ( body,
'</tr>',
'' );
update `dede_addonarticle` set body = replace ( body,
'<tr>',
'' );
update `dede_archives` set title= replace ( title,
'大洋新闻 - ',
'' );
update `dede_addonarticle` set body = replace ( body,
'../../../../../../',
'http://special.dayoo.com/meal/' );

mysql replace

用法1.replace intoreplace into table (id,name) values('1','aa'),('2','bb')
此语句的作用是向表table中插入两条记录。
2.replace(object, search,replace)
把object中出现search的全部替换为replaceselect replace('www.163.com','w','ww')--->www www.163.com

例:把表table中的name字段中的 aa替换为bbupdate table set name=replace(name,'aa','bb')

上一篇:

下一篇: