You'll need to break up the string of keywords and do the query like this:
WHERE title LIKE '%SEARCH%' OR title LIKE '%TEXT%' OR title LIKE '%HERE%'..
Though more complex, if you're up to the learning curve of Full Text, I would agree with bpgergo's answer. It has many advantages to simple "LIKE" queries. Consider this:
SELECT * FROM article WHERE title like '%BIO%'
This will return anything with "BIOLOGY", "BIOgraphy", etc. Full Text understands word boundaries so these "challenges" are addresses. Also, you can use the matching Relevance, and use that when sorting your results.
It also considers "stop" words, so if the user put in "Food for my fish", it would still only match for "Food" and "Fish" because "for" and "my" are common words that would be omitted.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…