I\'m trying to search a table for specific words.
Say I have a list of words: printer,network,wireless,urgent
I only want to return those rows where all of these
SELECT * FROM tickets WHERE concat(subject,body) LIKE "%printer%" AND concat(subject,body) LIKE "%network%" AND concat(subject,body) LIKE "%wireless%" AND concat(subject,body) LIKE "%urgent%"