pf » MySQL FULLTEXT Indexing and Searching

MySQL FULLTEXT Indexing and Searching

databases

MySQL has supported FULLTEXT indexes since version 3.23.23. VARCHAR and TEXT Columns that have been indexed with FULLTEXT can be used with special SQL statements that perform the full text search in MySQL.

To get started you need to define the FULLTEXT index on some columns. Like other indexes, FULLTEXT indexes can contain multiple columns. Here's how you might add a FULLTEXT index to some table columns:

ALTER TABLE news ADD FULLTEXT(headline, story);

Once you have a FULLTEXT index, you can search it using MATCH and AGAINST statements. For example:

SELECT headline, story FROM news
WHERE MATCH (headline,story) AGAINST ('Hurricane');

The result of this query is automatically sorted by relevancy.

MATCH

The MATCH function is used to specify the column names that identify your FULLTEXT collection. The column list inside the MATCH function must exactly match that of the FULLTEXT index definition, unless your search in boolean mode (see below).

AGAINST

The AGAINST function is where your full text search query goes. Besides the default natural language search mode, you can perform boolean mode searches, and use query expansion.

Boolean Mode Searches

SELECT headline, story FROM news
WHERE MATCH (headline,story)
AGAINST ('+Hurricane -Katrina' IN BOOLEAN MODE);

The above statement would match news stories about hurricanes but not those that mention hurricane katrina.

See the MySQL documentation on Boolean Mode searches for more info.

Query Expansion

The Blind Query Expansion (or automatic relevance feedback) feature can be used to expand the results of the search. This often includes much more noise, and makes for a very fuzzy search.

In most cases you would use this operation if the users query returned just a few results, you try it again WITH QUERY EXPANSION and it will add words that are commonly found with the words in the query.

SELECT headline, story FROM news
WHERE MATCH (headline,story)
AGAINST ('Katrina' WITH QUERY EXPANSION);

The above query might return all news stories about hurricanes, not just ones containing Katrina.

A couple points about Full-Text searching in MySQL:

  • Searches are not case sensitive
  • Short words are ignored, the default minimum length is 4 characters. You can change the min and max word length with the variables ft_min_word_len and ft_max_word_len
  • Words called stopwords are ignored, you can specify your own stopwords, but default words include the, have, some - see default stopwords list.
  • You can disable stopwords by setting the variable ft_stopword_file to an empty string.
  • Full Text searching is only supported by the MyISAM storage engine.
  • If a word is present in more than 50% of the rows it will have a weight of zero. This has advantages on large datasets, but can make testing difficult on small ones.

Do you have any other good tips for fulltext searching and indexing in MySQL?



Related Entries
29 people found this page useful, what do you think?

Trackback Address: 477/79152EEC66AF7FB2B23F5C39239F7C62
On 05/25/2006 at 1:08:38 PM MDT www.d06.net wrote:
1
hmmm. thanks...

On 05/25/2006 at 1:09:09 PM MDT www.d06.net wrote:
2
hmmm. thanks...

On 06/26/2006 at 6:26:50 AM MDT Mihaela Ozhan wrote:
3
Never forget-Arkadas means friendship in Turkish. Arkadas Real Estate Agents will help you find your dream holiday property in Turkey and will also become your friends-ready to help you when you need it. Choose Arkadas Real Estate for hassle-free holiday home ownership for your Kusadasi investment.

On 11/21/2006 at 7:30:12 AM MST Michael Brennan-White wrote:
4
Pete,

Thanks for this article. I was going crazy trying to figure out why I could do a search for WalMart but not CVS.

On 01/13/2007 at 3:05:26 AM MST Sam wrote:
5
Hello Pete,

Thanks for the valuable information about Full text searching ability of MySQL. By the way, do you know how to implement search queries like "All words", "Any Words" & Exact Match like there are in PHPKB Knowledge Base Software at http://www.knowledgebase-script.com

On 03/13/2007 at 12:59:16 AM MST Lucky Modiba wrote:
6
Thanx for the article but I seem to be having a problem with my fulltext search SELECT job_id FROM cv_jobs where MATCH (job_description,job_title) AGAINST ('Plant Accountant') AND (job_status_id = 1)

the query does not bring back any results even if the value in the against exists and the status is 1 what could be the cause of it. thanx

On 03/13/2007 at 12:59:42 AM MST Lucky Modiba wrote:
7
Thanx for the article but I seem to be having a problem with my fulltext search SELECT job_id FROM cv_jobs where MATCH (job_description,job_title) AGAINST ('Plant Accountant') AND (job_status_id = 1)

the query does not bring back any results even if the value in the against exists and the status is 1 what could be the cause of it. thanx

On 04/10/2007 at 3:15:40 PM MDT Alaweb wrote:
8
I have met the same problem, I have activated the fulltext indexing option, and run a simple test query, but no result ...

On 05/04/2007 at 9:26:59 AM MDT me wrote:
9
me too .. :(

On 07/04/2007 at 10:29:18 PM MDT madhu wrote:
10
how can we highlight the search result in php.plsss tel me the code

On 01/14/2008 at 7:38:51 AM MST Michael wrote:
11
Stop this foolishness. Look into Sphinx project, which is orders of magnitude better and faster, with only a bit more pain to set up.

On 01/17/2008 at 10:40:37 PM MST AMIT wrote:
12
hi all,

i just want to know whether it is useful to alter the 50% threshold scheme that mysql uses by default ,is it beneficial in any way regarding serach(either by increasing or decreasing its value)or is it good to use default value of 50% only.

which is better (altering the file to change 50% value or using default 50 %)

thanx and regards




  



Spell Checker by Foundeo





Subscribe to my RSS Feed: solosub RSS
Tags