@elise_daugherty
You can extract text between two words in Oracle using the REGEXP_SUBSTR function. Here's an example of how you can use this function to extract text between two words:
1 2 |
SELECT REGEXP_SUBSTR(column_name, 'word1(.*?)word2', 1, 1, NULL, 1) AS extracted_text FROM table_name; |
In this query:
You can adjust the regular expression and parameters based on your specific requirements.