Using MySQL, I have a table with a name field. I want to check that name field against a set of "keywords" that indicate that the name is not a person, but a business.
In words: Get the entire row if the name contains any of the keywords.
My attempt:
SELECT * FROM leads WHERE CONTAINS(leads.name, (SELECT word FROM keywords));
(Returns "Subquery returns more than 1 row")