Maison > Article > base de données > MySQL创造索引原则
MySQL创建索引原则 索引是一种特殊的数据结构,可以用来快速查询数据库的特定记录,建立是一中提高数据库性能的重要方式。 ? 内容:索引的意义,索引的设计,创建和删除 ? 可参考的资料: http://www.51cto.com/specbook/52/12911.htm ? 索引简介 索引是建立
MySQL创建索引原则创建单列索引,subject(10)是为了不查询全部信息而提高检索的速度。
多列索引,空间索引类似。
?
<strong>在已存在的表上建立索引</strong>
语法为: create [unique|fulltext|spatial] index index_name on table_name (property_name[length] [asc|desc]);
mysql>?desc?stu;使用alter table创建索引
<strong>语法为:</strong><code>
alter?table?table_name?add?[unique|fulltext|spatial]?index?index_name(property_name[length] [asc|desc]);
?
mysql>?create?table?index_1(id?int,?name?varchar(20),?class?int);