• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

sql 优化,该如何解决

mysql 搞代码 7年前 (2018-06-02) 90次浏览 已收录 0个评论

sql 优化
explain SELECT PostTime FROM a WHERE BrokerId=’781132′ ORDER BY PostTime DESC LIMIT 1;
+—-+————-+———————–+——+—————-+———-+———+——-+——+—————————–+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+———————–+——+—————-+———-+———+——-+——+—————————–+
| 1 | SIMPLE | a | ref | BrokerId,idx_3 | BrokerId | 5 | const | 1 | Using where; Using filesort |
+—-+————-+———————–+——+—————-+———-+———+——-+——+—————————–+

show index from a;
+———————–+————+———-+————–+————-+———–+————-+———-+——–+——+————+———
+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment 
|
+———————–+————+———-+————–+————-+———–+————-+———-+——–+——+————+———
+
| a | 0 | PRIMARY | 1 | DaId | A | 1376213 | NULL | NULL | | BTREE |  
|
| a| 1 | BrokerId | 1 | BrokerId | A | 688106 | NULL | NULL | YES | BTREE |  
|
| a| 1 | idx_1 | 1 | CityId | A | 22 | NULL | NULL | YES | BTREE |  
|
| a| 1 | idx_1 | 2 | IsPass | A | 22 | NULL | NULL | YES | BTREE |  
|
| a| 1 | idx_1 | 3 | BrokerId | A | 1376213 | NULL | NULL | YES | BTREE |  
|
|a| 1 | idx_1 | 4 | AreaCode | A | 1376213 | NULL | NULL | YES | BTREE |  
|
| a| 1 | idx_3 | 1 | BrokerId | A | 1376213 | NULL | NULL | YES | BTREE |  
|
| a| 1 | idx_3 | 2 | AreaCode | A | 1376213 | NULL | NULL | YES | BTREE |  
|
| a| 1 | idx_3 | 3 | PostTime | A | 1376213 | NULL | NULL | YES | BTREE |  
|
| a| 1 | IsPass | 1 | IsPass | A | 22 | NULL | NULL | YES | BTREE |  
|
+———————–+————+———-+————–+————-+———–+————-+———-+——–+——+————+——

给brokerid,posttime建个联合索引?还能优化么?

——解决方案——————–
给brokerid,posttime建个联合索引

已经是最优的了
——解决方案——————–
没什么可优化的了。即使创建 index on (brokerid,posttime) 也未必有多大作用, 你的 BrokerId 平均相同也就两条。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:sql 优化,该如何解决
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址