兩個參數,前面是關鍵字,後面是字符列code
CHARINDEX('Function',PartNumber)
這個搭配上面的CharIndex用起來不錯,三個參數字符串
update 表 set PartNumber=SUBSTRING(PartNumber,0,CHARINDEX('Function',PartNumber)) where PartNumber like '%Function%'
stuff('最帥的蜀雲泉最帥的我',4,3,'許嵩')
結果:string
最帥的許嵩最帥的我
這個和上面stuff方法不一樣的地方就是,這個不指定位置it
select replace('蜀雲泉真是帥啊','蜀雲泉','許嵩')
結果:io
許嵩真是帥啊