MySQL最小值函数MIN()优化

基于MySQL中使用延迟关联优化order by加limit超大分页这篇的student来练习

如下SQL,grade上面没有建立索引,查询最小值需要0.965s

select min(id) from student where grade='10年级'

通过如下方式优化后执行只需0.549s,这种方式可以让mysql扫描尽可能少的记录数

select id from student use index(PRIMARY) where grade='10年级' limit 1
上一篇:Debian-Linux配置网卡网络方法


下一篇:【转】Linux查看系统是32位还是64位方法总结