I'm in trouble with a strange behavior of mysql. If I try to search with fulltext query sam* word, I have no results back.
Ex. table companies
id || name
1 || Company name
2 || Same Company name
If I make
`SELECT name FROM companies WHERE MATCH name AGAINST ('+Company*' IN BOOLEAN MODE)`
It works, instead if I use
`SELECT name FROM companies WHERE MATCH name AGAINST ('+Sam*' IN BOOLEAN MODE)`
or
`SELECT name FROM companies WHERE MATCH name AGAINST ('+Same' IN BOOLEAN MODE)`
I have no results!
Do you have any idea about this issue?
PS. if I use +Sa* instead of +Sam*, it works