比如我想删除框起来的人名,用一条sql语句实现,(以人名为条件)
update table set name= replace(name,'Leon.wang,','') where id = 1104;
用replace 替换掉关键词, 然后update