1.update 表名 set 字段名=REPLACE(字段名,'原内容','新内容')
此种写法,会更新表中的所有数据的指定字段,即使不含原内容,也会更新
例:将admin表中user中的所有123变为aaa
update admin set user=REPLACE(password,'123','aaa')
此时若表中有三条数据,则三条数据全被影响,即使user中不含123
2.update admin set password=REPLACE(password,'aaa','123')
where password like '%aaa%'
此种写法只更新包含原内容的数据行
例:将admin表中user中的所有123变为aaa
update admin set user=REPLACE(password,'123','aaa') where password like '%123%'
此时若表中有三条数据,只有一条符合,则只有一条语句被影响