MySQL Full Text Search Boolean Mode Partial Match -


I found the Boolean mode of MySQL full text search useful, but there are some things that I can not see for example imagery Do that I have a full text column that contains the words "Steve Javascript Tutorial - Part One".

Imagine that I want to match it for each of the following searches: "Tutorial", "Javascript Tutorial", "Java", "Java Script", "Script"

Imagine that Each of those searches is specified in variables in any language only (I always use PHP).

How can I modify that Steve's article will return all those searches?

MATCH (article_title) AGAINST ('$ variable' in 'BOOLEAN MODE' * ')

This is impossible;)

When you search for "tutorial", the entry will not be found, because the entry in the database is singular and the search term is plural in the database (and on search) Before inserting, you should make a form of "Word Stimping."

When you do this, your expression will work with more words (spaces) For words you must add Asterix to every word.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -