<?PHP
--UPDATE `数据表名` SET `字段名` = replace (`字段名`,’要替换的内容’,’替换后的内容’)
UPDATE user_view SET User_Pass = replace(User_Pass,'','732b6e5f65242ae9218b8deb19f16617')
--批量更新某个字段的值
--update 表 set 字段=更新的值;
update user_view set user_pass='732b6e5f65242ae9218b8deb19f16617';
--substr('testWork',2,4)//返回结果为'est',(从字符串第2个字符开始截取长度为4的字符串)
update img_view set img_title=REPLACE(img_title,img_title,SUBSTR(img_title,6,30))
-- 以上代码来自jb51.cc
?>