索引

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:12:491113browse

索引的两种存储类型:B型树Btree, 哈希码HASH 4.1 索引 1【本文来自鸿网互联 (http://www.68idc.cn)】.普通索引 index(id) 2.唯一索引 唯一索引有时候并不能提高用户的查找速度 3.全文索引 属性数据类型必须是char/varchar/ text三种数据类型,并且只有MyISA

索引的两种存储类型:B型树Btree, 哈希码HASH

4.1索引

1【本文来自鸿网互联 (http://www.68idc.cn)】.普通索引 index(id)

2.唯一索引 唯一索引有时候并不能提高用户的查找速度

3.全文索引 属性数据类型必须是char/varchar/ text三种数据类型,并且只有MyISAM类型数据表支持。

4.单列索引

5多列索引 只有查询条件中使用了这些字段的第一个字段时,索引才会被使用。

6.空间索引 只有MyISAM类型表支持,而且索引字段必须有非空约束。

4.1.1创建索引

create table table_name(
属性名数据类型,
[ UNIQUE | FULLTEXT | SPATIAL ] INDEX } KEY[别名] ( 属性名([长度][ASC | DESC]) )
)

4.1.2 在已建立的数据表中创建索引

CREATE [ UNIQUE | FULLTEXT | SPATIAL ] INDEXindex_name ON table_name ( 属性[( length )] [ASC | DESC])
)

4.1.3 修改数据库结构添加索引

ALTER TABLE  table_name  ADD [UNIQUE | FULLTEXT | SPATIAL] INDEX index_name (
属性名[(length)] [ ASC | DESC])

4.1.4 删除索引

DROP INDEX index_name ON table_name
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn