EXPLAIN 和 COUNT 返回两个不同的值
我正在做:
explain select * from calibration;
它说 52133456345632 行
当我这样做时:
select count(*) from calibration;
我得到 52134563456961
有人能解释一下这里发生了什么吗?
i am doing:
explain select * from calibration;
it says 52133456345632 rows
when i do:
select count(*) from calibration;
i am getting 52134563456961
can someone explain whats going on here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表统计信息(由 EXPLAIN 使用)基于系统缓存的值,这些值可能不准确。
http://dev.mysql.com/doc/refman/ 5.1/en/using-explain.html 说:
因此,查询的“count()”版本将是准确的,因为它将真正“计算”现有行。 “解释”版本不一定会计算行数,但可能会使用估计/缓存。解释并不打算在代码或生产中实际使用 - 它只是帮助分析查询的工具。
Table statistics (used by EXPLAIN) are based on system-cached values that may not be accurate.
http://dev.mysql.com/doc/refman/5.1/en/using-explain.html says:
So the 'count()' version of the query will be accurate, as it will really 'count' existing rows. The 'explain' version does not necessarily count your rows, but might use an estimation/cache. Explain is not intended to be actually used in code or production - it is just a tool to help analysing your queries.