oracle db:在列值中更改指定的字符串

时间:2012-11-21 11:12:49

标签: regex string oracle substring

我必须更改以下“操作”列中的值:

        action                                                  target
provisionning,deletion,deprecation,consultation                 target1
restrict,lock,unlock,consultation,deletion                      target2

我要用所有行的'display'值替换此栏中的'咨询'。

我没有解决方案,有人可以帮助我吗?

提前thnx

1 个答案:

答案 0 :(得分:0)

这对于oracle ..

update table_name set action=replace(action,'consultation','display');