tags:

views:

28

answers:

1

Same the title : What is the Index - Normal - FullText - Unique ?

+3  A: 

A normal index is used to speed up operation by only containing a slice or hash of the row's data.

A fulltext index indicates to the database's fulltext search (FTS) engine that it should archive the data within the given fields for quicker searching through large volumes of text.

A unique index is similar to a normal index, but also imposes upon the database that the specific combination of fields within the index will be unique across the entire table.

Ignacio Vazquez-Abrams
What is a slice - hash
Snoob
It's just... a piece, a chunk, a portion.
Ignacio Vazquez-Abrams