update tb
set stuff('字段',27,34,'custweb')try

解决方案 »

  1.   

    update table set 列名 = repalce(列名,'/jxcadmin/','/custweb/')
      

  2.   

    錯了。這樣
    update tb
    set stuff('字段',27,8,'custweb')
    意思是從27位開始後面8位由'custweb'取代。
      

  3.   

    也可Update TableName Set ColName=Replace(ColName,'/jxcadmin/','/custweb/')加上/的原因是防止别的地方的jxcadmin被Update掉