I need to write what I'd like to call a Valley Girl-query. I need to SELECT
something that's LIKE IN
- something like this:
SELECT * FROM Table1 WHERE Name LIKE IN ( SELECT Name FROM Table2 )
The reason for this is I've got a table full of company names, but they're not exactly the same - f.ex. in Table1 it might say "Chrysler Group", while in Table2 it might just say "Chrysler".
Is there any easy way to do this?