有人可以帮我吗...我正在运行以下查询,但它仍然失败。
我想在字段中用RS替换S(同一字段中还有其他变量)但只想将S变量替换为RS
update
MDSCLMDTL
set
STATUS_CODE= 'rs' where STATUS_CODE ='s'
答案 0 :(得分:1)
尝试使用Replace
功能
update
MDSCLMDTL
set
STATUS_CODE= Replace(STATUS_CODE,'s','rs')
where charindex('s',STATUS_CODE)> 0 -- To filter the rows which doesnot have 's' character