count(*) count(1)哪个更快?

Views :
Update time : 2025-06-20 17:05:17

团队 code review 时,一位同事把 count(*)改成了 count(1),说这样性能更好。

真的是这样吗?今天通过源码和实测数据,把这个问题说透。

本文基于 MySQL 8.0.28 版本测试,不同版本的优化器行为可能有差异 三种 count 方式的本质区别先看看这三种写法在 MySQL 中到底做了什么: // 模拟MySQL处理count的伪代码 public class CountProcessor { // count(*) 的处理逻辑 public long countStar(Table table) { long count = 0; for …。

count(*)  count(1)哪个更快?
Related News
Read More >>
Blog Post With Youtube Video Linux里面usermod -L zhangsan命令是什么?
2025-06-20 04:15:15
Linux里面usermod -L zhangsan命令是什么?...
Blog Post With Youtube Video 家里想搞一个服务器,怎么才不违规?
2025-06-20 03:45:14
家里想搞一个服务器,怎么才不违规?...
Blog Post With Youtube Video 为什么中国足协成了“过街老鼠”了?
2025-06-20 02:50:15
为什么中国足协成了“过街老鼠”了?...
Blog Post With Youtube Video rust引入所有权的概念之后,真的可以完全解决内存安全的问题吗?
2025-06-20 04:05:14
rust引入所有权的概念之后,真的可以完全解决内存安全的问题吗?...

Leave Your Message