@text = 'First +Last /(toto salary *0.07)'
演算子間の「フレーズ全体のみ」を置き換えるSQLクエリは何ですか
つまり :
replace(@text , 'toto salary','bobo salary')
result : 'First +Last /(bobo salary *0.07)'
でもいつ :
replace(@text , 'toto','')
NO result because not match whole phrase ('toto salary')
つまり、' * + / - ( ) ' 演算子の間の句を置き換えます