full text search - Searching and and ampersand -


i have php/mysql directory. if searches company name "johnson & johnson" , it's db "johnson , johnson" doesn't match.

i'm doing name '% var %' kind of search currently. there easy way work? i'm not sure if it's matter of setting table innodb full text on column or if there's more involved.

thanks, don

yeah, need more sophisticated search capable of tokenising search terms , searching through tokenised index. of way there full text search in innodb table engine, @ other options. consider:

all of these more sophisticated full text indexers , searchers built database engine, require more work set , going mysql full text search too, depends on features need.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -