I have a query on fulltext that seems to work with a misspellings if I'm using 2 words but it doesn't if I'm using just one word
I have a table with fullname field
And in the table "Nile Rodgers","Bam Rogers","Catherine Wyn Rogers","Nigel Rogers"
my query
SELECT *
FROM people
WHERE MATCH (fullname) AGAINST ('myquerytext' IN NATURAL LANGUAGE MODE)
if I search for "Rodgers" I found "Nile Rodgers"
if I search for "Rogers" I found "Bam Rogers","Catherine Wyn Rogers","Nigel Rogers" BUT NOT "Nile Rodgers"
if I search "Nile Rogers" I fond "Nile Rodgers","Bam Rogers","Catherine Wyn Rogers","Nigel Rogers"
Is it possible to adjust the tolerance?