count(1)与count(*)比较_MySQL, Oracle及数据库讨论区_Weblogic技术|Tuxedo技术|中间件技术|Oracle论坛|JAVA论坛|Linux/Unix技术|hadoop论坛_联动北方技术论坛  
网站首页 | 关于我们 | 服务中心 | 经验交流 | 公司荣誉 | 成功案例 | 合作伙伴 | 联系我们 |
联动北方-国内领先的云技术服务提供商
»  游客             当前位置:  论坛首页 »  自由讨论区 »  MySQL, Oracle及数据库讨论区 »
总帖数
1
每页帖数
101/1页1
返回列表
0
发起投票  发起投票 发新帖子
查看: 1891 | 回复: 0   主题: count(1)与count(*)比较        下一篇 
ljss
注册用户
等级:新兵
经验:56
发帖:53
精华:0
注册:2012-1-19
状态:离线
发送短消息息给ljss 加好友    发送短消息息给ljss 发消息
发表于: IP:您无权察看 2014-12-22 11:06:17 | [全部帖] [楼主帖] 楼主

在此和各位分享 count(1)与count(*)比较,如下 sql调优,主要是考虑降低:consistent gets和physical reads的数量。

count(1)与count(*)比较:

如果你的数据表没有主键,那么count(1)比count(*)快
如果有主键的话,那主键(联合主键)作为count的条件也比count(*)要快
如果你的表只有一个字段的话那count(*)就是最快的啦
count(*) count(1) 两者比较。主要还是要count(1)所相对应的数据字段。
如果count(1)是聚索引,id,那肯定是count(1)快。但是差的很小的。
因为count(*),自动会优化指定到那一个字段。所以没必要去count(?),用count(*),sql会帮你完成优化的

count详解:

count(*)将返回表格中所有存在的行的总数包括值为null的行,然而count(列名)将返回表格中除去null以外的所有行的总数(有默认值的列也会被计入).
distinct 列名,得到的结果将是除去值为null和重复数据后的结果

总结三条经验

1.任何情况下SELECT COUNT(*) FROM tablename是最优选择;
2.尽量减少SELECT COUNT(*) FROM tablename WHERE COL = 'value’ 这种查询;
3.杜绝SELECT COUNT(COL) FROM tablename的出现。

国个找一文章不懂英文没译

COUNT(*) vs COUNT(col)
Looking at how people are using COUNT(*) and COUNT(col) it looks like most of them think they are synonyms and just using what they happen to like, while there is substantial difference in performance and even query result.
Lets look at the following series of examples:
CREATE TABLE `fact` (
`i` int(10) unsigned NOT NULL,
`val` int(11) default NULL,
`val2` int(10) unsigned NOT NULL,
KEY `i` (`i`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
mysql> select count(*) from fact;
+———-+
| count(*) |
+———-+
|  7340032 |
+———-+
1 row in set (0.00 sec)
mysql> select count(val) from fact;
+————+
| count(val) |
+————+
|    7216582 |
+————+
1 row in set (1.17 sec)
mysql> select count(val2) from fact;
+————-+
| count(val2) |
+————-+
|     7340032 |
+————-+
1 row in set (0.00 sec)
As this is MYISAM table MySQL has cached number of rows in this table. This is why it is able to instantly answer COUNT(*) and
COUNT(val2) queries, but not COUNT(val). Why ? Because val column is not defined as NOT NULL there can be some NULL values in it and so MySQL have to perform table scan to find out. This is also why result is different for the second query.
So COUNT(*) and COUNT(col) queries not only could have substantial performance performance differences but also ask different question.
MySQL Optimizer does good job in this case doing full table scan only if it is needed because column can be NULL.
Now lets try few more queries:
mysql> select count(*) from fact where i<10000;
+———-+
| count(*) |
+———-+
|   733444 |
+———-+
1 row in set (0.40 sec)
mysql> explain select count(*) from fact where i<10000 G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: fact
type: range
possible_keys: i
key: i
key_len: 4
ref: NULL
rows: 691619
Extra: Using where; Using index
1 row in set (0.00 sec)
mysql> select count(val) from fact where i<10000;
+————+
| count(val) |
+————+
|     720934 |
+————+
1 row in set (1.29 sec)
mysql> explain select count(val) from fact where i<10000 G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: fact
type: range
possible_keys: i
key: i
key_len: 4
ref: NULL
rows: 691619
Extra: Using where
1 row in set (0.00 sec)
mysql> select count(val2) from fact where i<10000;
+————-+
| count(val2) |
+————-+
|      733444 |
+————-+
1 row in set (1.30 sec)
mysql> explain select count(val2) from fact where i<10000 G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: fact
type: range
possible_keys: i
key: i
key_len: 4
ref: NULL
rows: 691619
Extra: Using where
1 row in set (0.00 sec)
As you can see even if you have where clause performance for count(*) and count(col) can be significantly different. In fact this example shows just 3 times performance difference because all data fits in memory, for IO bound workloads you frequently can see 10 and even 100 times performance difference in this case.
The thing is count(*) query can use covering index even while count(col) can’t. Of course you can extend index to be (i,val) and get query to be index covered again but I would use this workaround only if you can’t change the query (ie it is third party application) or in case column name is in the query for reason, and you really need count of non-NULL values.
It is worth to note in this case MySQL Optimizer does not do too good job optimizing the query. One could notice (val2) column is not null so count(val2) is same as count(*) and so the query could be run as index covered query. It does not and both queries have to perform row reads in this case.
mysql> alter table fact drop key i, add key(i,val);
Query OK, 7340032 rows affected (37.15 sec)
Records: 7340032  Duplicates: 0  Warnings: 0
mysql> select count(val) from fact where i<10000;
+————+
| count(val) |
+————+
|     720934 |
+————+
1 row in set (0.78 sec)


--转自 北京联动北方科技有限公司




赞(0)    操作        顶端 
总帖数
1
每页帖数
101/1页1
返回列表
发新帖子
请输入验证码: 点击刷新验证码
您需要登录后才可以回帖 登录 | 注册
技术讨论