mysql里批量修改表内某个字段内的部分数据
·
update table set field=replace(field,'oldString','newString')
update 表名 set 字段名=replace(字段名,'原内容','新内容')
select * from p_doctor where hospital_code="sxszyy" and head_url !='';
更多推荐
update table set field=replace(field,'oldString','newString')
更多推荐
所有评论(0)