update products set content='' where id='';或者使用mysql的替换函数REPLACE():
批量删除MYSQL字段的内容
update products set content=replace(content,'ABC','') where id in (1,5,9)2013-05-31
那你可以直接根据这些id进行修改啊
update products set content='' where id='';
或者使用mysql的替换函数REPLACE():2013-05-31