Skip to content
Advertisement

MySQL – How to get search results with accurate relevance

I have revisited this problem many times, and I have never really found a proper answer.

Is it possible to perform a MySQL search which returns ACTUAL accurately sorted results by relevancy?

I am trying to create an ajax search form which makes suggestions as the user types into an input field, and have found no decent solution to this using only pure MySQL queries. I know there are search servers available such as ElasticSearch, I want to know how to do it with a raw MySQL query only.


I have a table of school subjects. There are less than 1200 rows and this will never change. Let’s perform a basic FULLTEXT search where the user starts typing “Bio”.

Query (“Bio…”) – FULLTEXT BOOLEAN MODE

JavaScript

Results

JavaScript

To show how bad these results are, here is a comparison with a simple LIKE query which shows all the more relevant results which weren’t shown:

Query (“Bio…”) – LIKE

JavaScript

Results

JavaScript

And already you see how many subjects are not suggested, even though these are more likely what the user will be looking for.

The problem with using LIKE however, is how to search across multiple words and in the middle of words like FULLTEXT does.

The basic ordering I would want to implement is something like:

  1. First words starting with the search term
  2. Second words starting with the search term
  3. Words where the term is not at the start of the words
  4. Everything generally alphabetical if not further relevant

So my question is, how does one go about getting a sensibly sorted list of suggestions for the user with a MySQL search across multiple words?

Advertisement

Answer

You could use string functions, such as:

JavaScript

This gets you all entries containing @search. First those that have it at the beginning, then those that have it after a blank, then by the position of the occurrence, then alphabetical.

name like concat(@search, '%') desc uses MySQL’s boolean logic by the way. 1 = true, 0 = false, so ordering this descending gives you true first.

SQL fiddle: http://sqlfiddle.com/#!9/c6321a/1

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement