Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Oracle 10g では正常に動作しているが、Oracle 8i では動作していない Oracle SQL クエリに、この RTRIM および REGEXP 関数があります。次のステートメントを、Oracle 8i と 10g の両方で機能し、同じ結果が得られるものに変換するにはどうすればよいですか。
RTRIM(regexp_substr(table.column1, '([^/]+\.)'), '.')
助けてくれてありがとう。
私は答えを見つけました:
SUBSTR(table.column1, INSTR(table.column1, '/', -1) + 1, INSTR(table.column1, '.') - INSTR(table.column1, '/', -1) - 1)
^_^