I would like to search for people in my MySql database. The way I would like to do it is to check if there is a partial match of an x% with a list of names. I want to do this partial match in order to avoid to miss people due to spelling mistakes.
However, the only way I am able to do a partial match is through the "Like" operator. Is there a way to do something like this in MySql?
SELECT CONCAT(name, ' ', surname) as fullname
FROM users
WHERE MATCH fullname IN ('%joe green%' or '%marc blue%') >80%