I have a table that has about 3000 different key-phrases (small strings). I need a query that takes the input of a large-string (like a large sentence or paragraph) and returns the records of key-phrases that exist inside the large-string.
Simplified example: Table has 5 records: "fishing", "pond", "cloud", "big one", "house".
Large-string input: "I have a pond at my house. I decided to go fishing and caught a big one."
Query outputs (matched records): pond, house, fishing, big one
Thank you, James
I tried a few select statements to no avail. Maybe I need to parse the large-string into some kind of array before making a statement/query?