5

我有一个看起来相当简单的表结构,但是 MySQLindex_merge在简单查询上默认为不太理想。

这是表结构:

CREATE TABLE IF NOT EXISTS `event_log` (
  `event_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(5) DEFAULT NULL,
  `location_id` int(10) DEFAULT NULL,
  `object_id` int(5) DEFAULT NULL,
  `action_id` int(5) DEFAULT NULL,
  `date_event` datetime DEFAULT NULL,
  PRIMARY KEY (`event_id`),
  KEY `user_id` (`user_id`),
  KEY `date_event` (`date_event`),
  KEY `action_id` (`action_id`),
  KEY `object_id` (`object_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1;

解释一个基本的 SELECT 查询

EXPLAIN SELECT date_event
FROM event_log
WHERE user_id =123
AND object_id =456
AND location_id =789 

返回这个:

select_type  table     type         possible_keys       key                 key_len     ref     rows    Extra
SIMPLE       event_log index_merge  user_id,object_id   object_id,user_id   5,5         NULL    27      Using intersect(object_id,user_id); Using where

这是额外的位,以便于阅读:

Using intersect(object_id,user_id); Using where

为什么 MySQL 不在此查询中使用标准索引?为什么它user_id和相交object_id

4

1 回答 1

11

查询的最有效索引是包含所有三个字段的复合索引,例如:(object_id, user_id, location_id). 由于没有这样的索引,MySQL 会尽力从现有索引中获取大部分信息。

于 2013-04-29T16:42:33.827 回答