I have the following code:
select gametitle,gameid,system, match(gametitle,code) against ('"run fast"' in boolean mode) as relevance from cheats where match(gametitle,code) against ('"run fast"' in boolean mode) GROUP BY gametitle ORDER BY relevance;
It should search for the exact phrase, RUN FAST, correct? However, the results are that of a any word search, not exact phrase? Is the query syntax above correct?