主键索引 primary
mysql提前给我们创建好了,不需要我们自己创建主键索引
唯一索引 在test表中 创建唯一索引
create unique index username ON test(user_name);
普通索引
在test表中创建普通索引
create index password on test( password );
全局索引 在test表中 创建索引名为text 与字段text对应
create fulltext index text on test(text);
组合索引 在test表中 创建索引名为 username、password,与user_name, password 字段对应内容
create index username、password on test (user_name, password)