当前位置:Gxlcms > 数据库问题 > 新建一个索引能够同时提升三条SQL的查询性能

新建一个索引能够同时提升三条SQL的查询性能

时间:2021-07-01 10:21:17 帮助过:6人阅读

如题

CREATE TABLE `score` (
  `id` int(11) NOT NULL,
  `studentid` int(11) NOT NULL,
  `subjectid` int(11) NOT NULL,
  `score` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;



-- 新建一个索引能够同时提升三条SQL的查询性能

ALTER TABLE `score` ADD INDEX `score` ( `score` , `studentid` , `subjectid` )

EXPLAIN SELECT * FROM score WHERE score=100;
EXPLAIN SELECT * FROM score WHERE studentid=5 AND score=100;
EXPLAIN SELECT * FROM score WHERE studentid=5 AND subjectid=2 AND score=100;

`

本文出自 “技术蓝” 博客,请务必保留此出处http://bstdn.blog.51cto.com/8667020/1918329

新建一个索引能够同时提升三条SQL的查询性能

标签:mysql 索引 性能

人气教程排行