LIKE help

  • Thread starter Thread starter Mike C
  • Start date Start date
M

Mike C

I created a table with some keywords that I would like to
use in a LIKE criteria for a query I have. I'm sure if
this can be done but this is what I have tried to do and
it didn't work. Any ideas or suggestions would be greatly
appreciated.

Like "*In(Select [Name] From [tbl_Names])*"
 
PERHAPS you can do this in a non-equi join.

SELECT Distinct Whatever
FROM YourTable INNER JOIN KeywordTable
 
Back
Top