I have a table with a field that contains a description (something like "this is my description"); right now I'm able to select all the records that contain a word from another table
SELECT *
FROM table1, table2
WHERE (((InStr([Description],[table2].[word]))>0));
I can't find the way to do the...