MIN/MAX 与 ORDER BY 和 LIMIT

MIN/MAX vs ORDER BY and LIMIT(MIN/MAX 与 ORDER BY 和 LIMIT)
本文介绍了MIN/MAX 与 ORDER BY 和 LIMIT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在以下查询中,您认为哪种方法更好?你的原因是什么(代码效率,更好的可维护性,更少的WTFery)...

Out of the following queries, which method would you consider the better one? What are your reasons (code efficiency, better maintainability, less WTFery)...

SELECT MIN(`field`)
FROM `tbl`;

SELECT `field`
FROM `tbl`
ORDER BY `field`
LIMIT 1;

推荐答案

在最坏的情况下,当您查看未编入索引的字段时,使用 MIN() 需要一次完整传递桌子.使用 SORTLIMIT 需要文件排序.如果针对大表运行,感知性能可能会有显着差异.作为一个轶事数据点,MIN() 花费了 0.36 秒,而 SORTLIMIT 在我的开发服务器上的 106,000 行表中花费了 0.84 秒.

In the worst case, where you're looking at an unindexed field, using MIN() requires a single full pass of the table. Using SORT and LIMIT requires a filesort. If run against a large table, there would likely be a significant difference in percieved performance. As an anecdotal data point, MIN() took .36s while SORT and LIMIT took .84s against a 106,000 row table on my dev server.

但是,如果您正在查看索引列,则很难注意到差异(在这两种情况下,无意义的数据点都是 0.00 秒).然而,查看解释的输出,看起来 MIN() 能够简单地从索引中提取最小值(选择优化掉的表"和NULL"行),而 MIN()>SORT 和 LIMIT 仍然需要对索引(106,000 行)进行有序遍历.实际性能影响可能可以忽略不计.

If, however, you're looking at an indexed column, the difference is harder to notice (meaningless data point is 0.00s in both cases). Looking at the output of explain, however, it looks like MIN() is able to simply pluck the smallest value from the index ('Select tables optimized away' and 'NULL' rows) whereas the SORT and LIMIT still needs needs to do an ordered traversal of the index (106,000 rows). The actual performance impact is probably negligible.

看起来 MIN() 是要走的路 - 在最坏的情况下更快,在最好的情况下无法区分,是标准 SQL 并且最清楚地表达了您想要获得的值.似乎使用 SORTLIMIT 的唯一情况是,因为 mson 提到,您正在编写一个从任意列中查找顶部或底部 N 个值的通用操作,并且不值得写出特殊情况操作.

It looks like MIN() is the way to go - it's faster in the worst case, indistinguishable in the best case, is standard SQL and most clearly expresses the value you're trying to get. The only case where it seems that using SORT and LIMIT would be desirable would be, as mson mentioned, where you're writing a general operation that finds the top or bottom N values from arbitrary columns and it's not worth writing out the special-case operation.

这篇关于MIN/MAX 与 ORDER BY 和 LIMIT的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
SQL query to group by day(按天分组的 SQL 查询)
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)