mysql中批量修改某一个字段
类似于批量替换语句中的一部分内容 例如批量修改字段filepath中的 "/ly/" 为 "/"
update 表名 set filepath=replace(filepath,""/ly/","/");
注:此语句不会影响"/ly/"两侧的内容