I want to query a list of names from one table that appear in a field in a different table.
Example:
table1.title>Tiger Woods Cheats, Tiger Woods Crashes, Brad Pitt is Great, Madonna Adopts, Brad Pitt Makes a Movie
table2.names>Tiger Woods, Brad Pitt, Madonna
So those are the two tables and values. I would like to write a query that counts which names from table2.names appear most often in table1.title
Someone suggested using inner join, but I could not get it to work... I appreciate the help!! Thanks.