update 表名 set 字段名=stuff(字段名,开始下标,修改就位,'内容') where 条件如update a set id=stuff(id,1,1,'b') where substring(id,1,1)='2'如修改第六位到第8位:update a set id=stuff(id,6,2,'ab') where substring(id,6,2)='22'