Possible Duplicate:
MySQL - How to search for exact word match using LIKE?
For example, if Im trying to get rows with the word "ever", I could do this...
SELECT * FROM 'table' WHERE `title` LIKE %ever%
But that would also give me results for titles with the words "forever, however, never".
How can I find only the titles which contain "ever" as its own word?