How can I do a MySQL search which will match partial words but also provide accurate relevancy sorting?
SELECT name, MATCH(name) AGAINST (\'math*\' IN BOOLEA
I obtained a good solution in this (somewhat) duplicate question a year later:
MySQL - How to get search results with accurate relevance