I've been experimenting with fulltext search I've been able to get relevance level on the words that I try to match, but is there any way to assign relevance to the field that the word is coming from.
SELECT * FROM basket WHERE MATCH(fruit, vegtable)
AGAINST ('>apple carrot' IN BOOLEAN MODE);
in the above example... is there any way to assign relevance priority for apple coming from field fruit instead of vegetable field?
SELECT * FROM basket WHERE MATCH(fruit, vegtable)
AGAINST ('>apple carrot' IN BOOLEAN MODE);
in the above example... is there any way to assign relevance priority for apple coming from field fruit instead of vegetable field?