SQL 修改数据表字段Name 刘德华->香港查询出字段Name中所有刘德华的信息修改成郭富城[解决办法]
update tb set name=replace(name,'刘德华','郭富城')where name like '%刘德华%'