1.索引介绍: 2.建立索引的方法: 注意:索引名称不要相同: (1)在建表的时候,可以增加主键索引的语句如下: 1)例一: create table student1 ( id int(4) not null auto_increment, name varchar(20) not null, primary key (id), key index_name (name) ); primary key(id), #设置主键索引,主键索引是id字段: key index_name(name) #…