在执行“order by”时,MySQL停留在“使用filesort”

时间:2010-04-20 02:52:52

标签: mysql sql-order-by filesort

我似乎无法让我的查询停止使用filesort。

这是我的疑问:

SELECT s.`pilot`, p.`name`, s.`sector`, s.`hull` 
FROM `pilots` p 
 LEFT JOIN `ships` s ON ( (s.`game` = p.`game`) 
  AND (s.`pilot` = p.`id`) ) 
WHERE p.`game` = 1 
 AND p.`id` <> 2 
 AND s.`sector` = 43 
 AND s.`hull` > 0 
ORDER BY p.`last_move` DESC

表格结构:

CREATE TABLE IF NOT EXISTS `pilots` (
  `id` mediumint(5) unsigned NOT NULL AUTO_INCREMENT,
  `game` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `last_move` int(10) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`id`),
  KEY `last_move` (`last_move`),
  KEY `game_id_lastmove` (`game`,`id`,`last_move`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;

CREATE TABLE IF NOT EXISTS `ships` (
  `id` mediumint(5) unsigned NOT NULL AUTO_INCREMENT,
  `game` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `pilot` mediumint(5) unsigned NOT NULL DEFAULT '0',
  `sector` smallint(5) unsigned NOT NULL DEFAULT '0',
  `hull` smallint(4) unsigned NOT NULL DEFAULT '50',
  UNIQUE KEY `id` (`id`),
  KEY `game` (`game`),
  KEY `pilot` (`pilot`),
  KEY `sector` (`sector`),
  KEY `hull` (`hull`),
  KEY `game_2` (`game`,`pilot`,`sector`,`hull`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;

解释:

id  select_type  table  type  possible_keys  key  key_len  ref  rows  Extra
1  SIMPLE     p  ref  id,game_id_lastmove  game_id_lastmove  1  const  7  Using where; Using filesort
1  SIMPLE     s  ref  game,pilot,sector...  game_2  6  const,fightclub_alpha.p.id,const  1    Using where; Using index

编辑:我从查询/表格结构中删除了一些不必要的部分。

有人有什么想法吗?

2 个答案:

答案 0 :(得分:0)

您可以做的最好的事情是制作索引:

  1. 包含表格ships的索引,其中包含以下字段:game + pilot + sector + hull按此特定顺序
  2. pilotsgame + id
  3. 此特定查询将始终使用filesort,因为它没有范围条件p.id&lt;&gt; 2

答案 1 :(得分:0)

http://dev.mysql.com/doc/refman/5.0/en/order-by-optimization.html

  

在某些情况下,MySQL无法使用   用于解析ORDER BY的索引,   虽然它仍然使用索引来查找   与WHERE子句匹配的行。   这些案件包括以下内容......   用于获取行的键不是   与ORDER中使用的相同   BY