I am using regex to search for exact two words in any order. I got the first part of the search but the second part is not working.
REGEXP_SUBSTR('TWO WORDS ARE ONE','(?:^|\W)WORDS(?:$|\W') - one word search
how do I add one more word in the above search?