Is it possible to match against words that begin or end with the searchstring?
Example:
I want to find a column that contains the word "pineapple". I want to find that row by searching for "pine" or just "apple" if that's possible.
Can this be done?
Current code, if it helps:
SELECT id
FROM movies
WHERE MATCH (movies.movie_title)
AGAINST ('+word1 +word2' IN BOOLEAN MODE)