I am attempting to search through a FULLTEXT index using MATCH AGAINST, but I'm running into some trouble. I would like to essentially do a LIKE '%keyword%', such that keyword can be found as a whole word or part of another word. The closes thing I've found is to perform a MATCH AGAINST ('keyword*'), which matches the beginning of a word. However, I'd like to also find matches within a word, using something like MATCH AGAINST ('*keyword*'). It seems this isn't possible though, as it returns no results. Any suggestions?