I have a table with a string column "word" and a rather large text. Now I want to find those words that appear within that text. So IMHO I need a reverse LIKE operator. Ist that possible in plain SQL (no stored procedures)?
Example: Finding words in rhymes
| ID | Word |
| 1 | star |
| 2 | moon |
| 3 | sun |
| 4 | sky |
Text: Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky.
==> should find ID 1: start, 4: sky