使用变量

时间:2015-08-11 16:21:32

标签: sql-server

有人可以帮我吗...我正在运行以下查询,但它仍然失败。

我想在字段中用RS替换S(同一字段中还有其他变量)但只想将S变量替换为RS

update
 MDSCLMDTL
set
 STATUS_CODE= 'rs' where STATUS_CODE ='s'

1 个答案:

答案 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