Is this the most efficient way to search multiple values at once?
SELECT *
FROM `table`
WHERE ( (title LIKE %search term 1%)
OR (description LIKE %search term 1%)
OR (title LIKE %search term 2%)
OR (description LIKE %search term 2%)
OR (title LIKE %search term 3%)
OR (description LIKE %search term 3%)
OR (title LIKE %search term 4%)
OR (description LIKE %search term 4%)
OR (title LIKE %search term 5%)
OR (description LIKE %search term 5%)
)
;