当前位置: 代码迷 >> 综合 >> Sql模糊替换字段内某个值
  详细解决方案

Sql模糊替换字段内某个值

热度:64   发布时间:2024-03-06 06:59:20.0

Sql模糊替换字段内某个值:

update table1 set name = replace(name , '张三' ,'张小三')

where name like '%张三%'

 

  相关解决方案