Hi,
I am working with mysql full text search but find it lacking in situations where your string is part of a word within a field. If my filed is New York Times and I search for 'Time' I get no results. The hackish way to solve this is to set up two queries, one that does a full text search and the other than does SELECT * FROM ___ WHERE 'string' LIKE %..% search. Is there any way that I can set up my full text search to solve this issue so i don't have to run the extra query.