私は赤方偏移に取り組んでいます&最初の出現の括弧内のメッセージだけを削除するクエリを書きたいと思っています。そこに赤方偏移で最初に出現する正規表現を見つける正規表現
入力: -
FR_3000 Error opening file [File_Location]. Operating system error message [The system cannot find the path specified.].
出力: -
FR_3000 Error opening file []. Operating system error message [The system cannot find the path specified.].
私は、クエリの下にしようとしたが、何
select regexp_replace(description,'\[(.*?)\]','') from emp;
どのように問題を解決できないか教えてください。それは間違った正規表現、または間違ったテーブルまたは列名の名前かもしれません –