I'm trying to build a query in mysql that searches for whether a column of strings contains any word from an array of words.
let's say the array is {'cats', 'dogs', 'bears'}
How can you perform a query in MySQL to return all rows that contain any of these words?
"SELECT * FROM table WHERE description=????????
[edit: the column contains sentences]