优化测试
1、直接查询
select * from student where id in ( select student_id from student_score where course_id=1 and score=100 );
不知道为什么 2.7s 就执行完了… 原文中说 执行时间:30248.271s
马上看了下版本号,难道是版本的问题:
我的 : Server version: 5.7.21 原文:mysql 5.6
用 explain 看执行计划 type=all
explain extended select * from student where id in ( select student_id from student_score where course_id=1 and score=100 ); # 执行完上一句之后紧接着执行 mysql> show warnings; SELECT `demo`.`student`.`id` AS `id`, `demo`.`student`.`name` AS `name` FROM `demo`.`student` semi JOIN ( `demo`.`student_score` ) WHERE ( ( `<subquery2>`.`student_id` = `demo`.`student`.`id` ) AND ( `demo`.`student_score`.`score` = 100 ) AND ( `demo`.`student_score`.`course_id` = 1 ) )
2、增加索引
单条大概执行15s
alter table student_score add index INDEX_COURSE_ID(course_id); alter table student_score add index INDEX_SCORE(score);
加完索引之后执行 0.027s ,速度快了 100倍(2.7 / 0.027)
3、使用 inner join
用了 0.26
select s.id, s.name from student as s inner JOIN student_score as ss on s.id=ss.student_id where ss.course_id=1 and ss.score=100
4、再次优化
执行也是 0.26, 并没有像原文所说的那样 0.001s…难道他的机器比我好?
select s.id, s.name from (select * from student_score where course_id=1 and score=100 ) as t inner join student as s on s.id=t.student_id
虽然和原文很多不一致的地方,不过也算是一次加索引优化数据库查询的实际操作了
参考文章
文章知识点与官方知识档案匹配,可进一步学习相关知识