I have the table tbl1 which contains the phrases and another table tbl2 with the words. I should create the List Box with the phrases from tbl1 which does not contain any word from tbl2.
What would be the simplest solution ?
Change CJ_Londons query to Like instead of not like. This will give the phrases that DO match. Then use this as a sub query on the phrases table to exclude the matched list i.e a left join where no match.