mysql explain中的 “Select tables optimized away”

今天在做SQL语句优化的时候,在explain的时候,有这样一个提示:

EXPLAIN   SELECT MAX(`year`) FROM st_sch_recruit_info info

mysql explain中的 “Select tables optimized away”_第1张图片

输出的结果里,Extra列输出了"Select tables optimized away"语句。

这个在MySQL的手册里面没有任何提及,不过看其他各列的数据大概能猜到意思:SELECT操作已经优化到不能再优化了(MySQL根本没有遍历表或索引就返回数据了)。

在MySQL官方站点翻到两段相关的描述,印证了上述观点,原文如下:
For explains on simple count queries (i.e. explain select count(*) from people) the extra section will read "Select tables optimized away." This is due to the fact that MySQL can read the result directly from the table internals and therefore does not need to perform the select.


官方地址如下:
http://mysql2.mirrors-r-us.net/doc/refman/5.0/en/explain.html

你可能感兴趣的:(mysql)