免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1883 | 回复: 1
打印 上一主题 下一主题

关于mysql查询计划的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-10-20 11:33 |只看该作者 |倒序浏览
两台配置相同的服务器(A服务器和B服务器),跑的业务也完全相同,表结构全完相同,表中的索引也完全相同,唯一不同的就是一个表中的数据多,一个少,A
服务器执行相同的查询,扫描的数据行数为893559行,B服务器扫描的行数据为55行.请高手帮分析一下,谢谢!



A服务器:
mysql> select count(*) from CashFlow;
+----------+
| count(*) |
+----------+
|   893671 |
+----------+
1 row in set (0.20 sec)


mysql> show index from CashFlow;
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table    | Non_unique | Key_name            | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| CashFlow |          0 | PRIMARY             |            1 | id          | A         |      893559 |     NULL | NULL   |      | BTREE      |         |
| CashFlow |          1 | CashFlow_createDttm |            1 | createDttm  | A         |      893559 |     NULL | NULL   |      | BTREE      |         |
| CashFlow |          1 | CashFlow_UserId     |            1 | userId      | A         |         202 |     NULL | NULL   |      | BTREE      |         |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
3 rows in set (0.01 sec)



mysql> explain SELECT sum(c.num)   FROM CashFlow c,Account a,User u   WHERE c.type = 'EDUCATE' and (c.createDttm between '2010-10-18 00:00:00' and '2010-10-18 23:59:59') and u.userId = c.userId and a.accId = u.accId   and a.partnerId = '120010';
+----+-------------+-------+--------+-------------------------------------+---------+---------+----------------+--------+-------------+
| id | select_type | table | type   | possible_keys                       | key     | key_len | ref            | rows   | Extra       |
+----+-------------+-------+--------+-------------------------------------+---------+---------+----------------+--------+-------------+
|  1 | SIMPLE      | c     | ALL    | CashFlow_createDttm,CashFlow_UserId | NULL    | NULL    | NULL           | 893559 | Using where |
|  1 | SIMPLE      | u     | eq_ref | PRIMARY,User_accId                  | PRIMARY | 4       | sword.c.userId |      1 |             |
|  1 | SIMPLE      | a     | eq_ref | PRIMARY                             | PRIMARY | 4       | sword.u.accId  |      1 | Using where |
+----+-------------+-------+--------+-------------------------------------+---------+---------+----------------+--------+-------------+
3 rows in set (0.00 sec)








B服务器:

mysql> select count(*) from CashFlow;
+----------+
| count(*) |
+----------+
|   293854 |
+----------+
1 row in set (0.06 sec)


mysql> show index from CashFlow;
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table    | Non_unique | Key_name            | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| CashFlow |          0 | PRIMARY             |            1 | id          | A         |      298077 |     NULL | NULL   |      | BTREE      |         |
| CashFlow |          1 | CashFlow_createDttm |            1 | createDttm  | A         |      298077 |     NULL | NULL   |      | BTREE      |         |
| CashFlow |          1 | CashFlow_UserId     |            1 | userId      | A         |        4319 |     NULL | NULL   |      | BTREE      |         |
+----------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
3 rows in set (0.50 sec)



mysql> explain SELECT sum(c.num)   FROM CashFlow c,Account a,User u   WHERE c.type = 'EDUCATE' and (c.createDttm between '2010-10-18 00:00:00' and '2010-10-18 23:59:59') and u.userId = c.userId and a.accId = u.accId   and a.partnerId = '120011';
+----+-------------+-------+--------+-------------------------------------+---------------------+---------+----------------+------+-------------+
| id | select_type | table | type   | possible_keys                       | key                 | key_len | ref            | rows | Extra       |
+----+-------------+-------+--------+-------------------------------------+---------------------+---------+----------------+------+-------------+
|  1 | SIMPLE      | c     | range  | CashFlow_createDttm,CashFlow_UserId | CashFlow_createDttm | 4       | NULL           |   55 | Using where |
|  1 | SIMPLE      | u     | eq_ref | PRIMARY,User_accId                  | PRIMARY             | 4       | sword.c.userId |    1 |             |
|  1 | SIMPLE      | a     | eq_ref | PRIMARY                             | PRIMARY             | 4       | sword.u.accId  |    1 | Using where |
+----+-------------+-------+--------+-------------------------------------+---------------------+---------+----------------+------+-------------+
3 rows in set (0.00 sec)

论坛徽章:
8
综合交流区版块每周发帖之星
日期:2015-12-02 15:03:53数据库技术版块每日发帖之星
日期:2015-10-02 06:20:00IT运维版块每日发帖之星
日期:2015-10-02 06:20:00IT运维版块每日发帖之星
日期:2015-09-14 06:20:00金牛座
日期:2014-10-10 11:23:34CU十二周年纪念徽章
日期:2013-10-24 15:41:34酉鸡
日期:2013-10-19 10:17:1315-16赛季CBA联赛之北京
日期:2017-03-06 15:12:44
2 [报告]
发表于 2010-10-20 18:14 |只看该作者
数据量多的时候,注意数据的分布和选择性
你可以分析表看看

格式凌乱,没详细看
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP