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

Regex oracle db:更改列值中指定的字符串,regex,string,oracle,substring,Regex,String,Oracle,Substring,我必须更改以下“操作”列中的值: action target provisionning,deletion,deprecation,consultation target1 restrict,lock,unlock,consultation,deletion target2 我必须在所有行中将本栏中的“咨询”

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

        action                                                  target
provisionning,deletion,deprecation,consultation                 target1
restrict,lock,unlock,consultation,deletion                      target2
我必须在所有行中将本栏中的“咨询”替换为“显示”值

我没有办法,谁能帮帮我吗

thnx提前

这是针对oracle的

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