Select only words with capitals
If I have data stored in my Database much like this Sentence, with Some words containing uppercase letters and some not, what is the simplest Way to select only those words which contain upperCase letters?
From the above sentence, for example, I would want to see the result :
If I Database Sentence Some Way upperCase
Note that the uppercase letter(s) will not always be at the start of a word.
Is there a simple way to achieve this? I started dabbling with REGEXP_LIKE, but my regular expressions are pretty hopeless at the best of times :-(