Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create index syntax

Status
Not open for further replies.

kehers

Programmer
Aug 31, 2005
56
A2
I seem to understand the "Unique" and "fulltext" options in the create index table syntax that goes this way:

create index [unique | fulltext | spatial] index
index_name [index_type]
on tbale_name [index_col_name,...)

however i'd luv an explanation on spatial indexes and index_types
 
Spatial indexes only apply to geometric fields, which I know nothing about, but it's explained in the MYSQL manual. The index type specifies the index technology you want to use (for performance reasons); currently only MEMORY tables offer you a choice. Again, this is explained in the manual.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top