-- 创建一个普通索引(方式①)
create index 索引名 ON 表名 (列名(索引键长度) [ASC|DESC]);
-- 创建一个普通索引(方式②)
alter table 表名 add index 索引名(列名(索引键长度) [ASC|DESC]);
-- 创建一个普通索引(方式③)
CREATE TABLE tableName(
columnName1 INT(8) NOT NULL,
columnName2 ....,
.....,
index [索引名称] (列名(长度))
);
-- 后续其他类型的索引都可以通过这三种方式创建
-- 创建一个唯一索引
create unique 索引名 ON 表名 (列名(索引键长度) [ASC|DESC]);
-- 创建一个主键索引
alter table 表名 add primary key 索引名(列名);
-- 创建一个全文索引
create fulltext index 索引名 ON 表名(列名);
-- 创建一个前缀索引
create index 索引名 ON 表名 (列名(索引键长度));
-- 创建一个空间索引
alter table 表名 add spatial key 索引名(列名);
-- 创建一个联合索引
create index 索引名 ON 表名 (列名1(索引键长度),列名2,...列名n);