MySQL FAQs
FAQs Categories
Client Server Commands
Database Structure
Table Types or Storage Engines
Indexes
SQL Statements
Table Joins
Funtions and Operators
Tricky Select Queries
Speed Up Queries
Data Back Up
General Questions
Errors
1PLs Company - #1Payday.Loans Agency - Loans online and near me $100-$2500 (Same Day)
Powered by MySQL
 
Home / Indexes / Full Text Indexes / Question No: 170

Main features and basic information about full-text search

Before to start work on full-text search, read the following main features and basic information about MySQL full-text search

Answer No: 170

Main features and basic information about full-text search

  • Currently, only MyISAM (one of the table types in MySQL) supports Full-text searches.
  • A FULLTEXT index can only be created for non-binary data types namely CHAR, VARCHAR and TEXT.
  • FULLTEXT index can be created for a single field or combination of fields.
  • The simple usage of MATCH() function is available to all MySQL Servers from version 2.23.23.
  • The advance usage (the IN BOOLEAN MODE) is available from version 4.0.1.
  • MySQL 4.1.1, Full-Text search supports WITH QUERY EXPANSION modifier.
  • As of MySQL 4.1, the use of multiple character sets within a single table is supported.
  • Any word less than or equal to 3 characters in length are not indexed by MySQL
  • Any word that appear in more than 50% of the rows are not indexed. In other words, if a table contains 2 or less rows, a search on a FULLTEXT index will nothing. To get round the 50% threshold, IN BOOLEAN MODE modifier can be used
  • MySQL maintains stopword list (varies version to version) based upon common English words. So the words in the stopword list are excluded from the research results. However, this list can be changed as required.  (A stopword is a word such as "the" or "some" that is so common that it is considered to have zero semantic value).
  • FULLTEXT index supports search for more than one word at a time. You can do so by separating the words with comma.
  • Hyphenated words are excluded from the search. Basically they are indexed as separated words.
  • By default, the search is performed case-insensitively.
  • Results are returned in order of relevance, from highest to lowest.
  • MySQL only performs the FULLTEXT search once, even though the two MATCH clauses are different.

Related MySQL FAQs to the Above FAQ

What-are-full-text-restrictions-in-MySQL What are full-text restrictions in MySQL?

On-what-data-types-fulltext-index-can-be-created On what data types fulltext index can be created?

How-to-create-full-text-index-in-MySQL How to create full-text index in MySQL?

How-to-create-multi-columns-full-text-index-in-MySQL How to create multi columns full-text index in MySQL?

What-are-natural-language-and-boolean-and-query-expansion-full-text-searches What are natural language and boolean and query expansion full-text searches?

How-to-use-boolean-full-text-search-in-MySQL How to use boolean full-text search in MySQL?

How-to-use-full-text-searches-with-query-expansion-in-MySQL How to use full-text searches with query expansion in MySQL?

How-to-use-natural-language-full-text-search-in-MySQL How to use natural language full-text search in MySQL?

What-are-stopwords-in-MySQL What are stopwords in MySQL?

About FAQs: Recently Added FAQs

About MySQL FAQs: Site Map | Bookmark Us | Recommend this Site to Your Friend | Contact Us

Useful Links: Wikipedia.org | Oracle.com | w3schools.com | www.php.net | Github.com

© 2023  www.mysqlfaqs.net
All rights reserved.