1.索引的作用 数据库对象 用于提高数据库检索的效率,对于where,group,order by条件中经常出现的字段,创建索引可以加快效率 缺点:如果对于大量的数据插入时效率可能会变低 2.索引的使用 如果有这么一张表:student(字段id,sex,name,age等) (1)单一索引 --创建索引 create index idx_sex on student(sex); select id,sex,name from student where sex = '男': (2)复合索引 -…