例1:UPDATE BBSTopic SET tcontents = replace(replace(tcontents,‘共产党‘,‘‘) ,‘找死‘,‘‘) where tcontents like ‘%共产党%‘ or tcontents like ‘%找死%‘
例2:UPDATE typetable SET type_description=REPLACE(type_description,‘360‘,‘http://www.jb51.net‘);
mysql replace用法
1.replace into replace into table (id,name) values(‘1‘,‘aa‘),(‘2‘,‘bb‘)
此语句的作用是向表table中插入两条记录。如果主键id为1或2不存在
就相当于
insert into table (id,name) values(‘1‘,‘aa‘),(‘2‘,‘bb‘)
如果存在相同的值则不会插入数据