I have a table (Table1) that has a text field where users can enter free-form text. Some of the info that they'll invariably enter contains words that match records in an unrelated table (Table2).
Is there anyway I can query records in Table1 where there is text in the aforementioned text field that matches records in Table2?
For example, if the field in Table1 contains a record "Bruce gave Carol $25", and a field in Table2 contains "Bruce" as one of its records, can I query out that record in Table1 based on the records in Table2?
Furthermore, if "Bruce", "John", and "Mary" all belonged to a group called "Sales" in a related table, could I query Table1 to pull out records where any name from the "Sales" group is mentioned in the text field in Table1?