0

我有一个“慢查询”,没有找到“正确”的索引来避免慢查询。

查询是:

SELECT c.uid FROM tx_gwcalendar_competition c,tx_gestionprofildb_discipline d WHERE c.hidden=0 and c.deleted=0 and c.discipline=d.uid and d.usergroup=19 LIMIT 1;

我的桌子是:

CREATE TABLE IF NOT EXISTS `tx_gwcalendar_competition` (
  `uid` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL DEFAULT '0',
  `tstamp` int(11) NOT NULL DEFAULT '0',
  `crdate` int(11) NOT NULL DEFAULT '0',
  `cruser_id` int(11) NOT NULL DEFAULT '0',
  `sys_language_uid` int(11) NOT NULL DEFAULT '0',
  `l10n_parent` int(11) NOT NULL DEFAULT '0',
  `l10n_diffsource` mediumtext,
  `deleted` tinyint(4) NOT NULL DEFAULT '0',
  `hidden` tinyint(4) NOT NULL DEFAULT '0',
  `title` tinytext,
  `discipline` int(11) NOT NULL DEFAULT '0',
  `dept` tinytext,
  `ville` tinytext,
  `distance` tinytext,
  `date` int(11) NOT NULL DEFAULT '0',
  `description` text,
  PRIMARY KEY (`uid`),
  KEY `parent` (`pid`),
  KEY `deleted` (`deleted`,`hidden`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=8659 ;

CREATE TABLE IF NOT EXISTS `tx_gestionprofildb_discipline` (
  `uid` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL DEFAULT '0',
  `tstamp` int(11) NOT NULL DEFAULT '0',
  `crdate` int(11) NOT NULL DEFAULT '0',
  `cruser_id` int(11) NOT NULL DEFAULT '0',
  `deleted` tinyint(4) NOT NULL DEFAULT '0',
  `hidden` tinyint(4) NOT NULL DEFAULT '0',
  `libelle` tinytext,
  `description` text,
  `usergroup` int(11) NOT NULL DEFAULT '0',
  `sportup_tag` tinytext,
  `form_mutation` text,
  `documents` text,
  `mutation` tinyint(3) NOT NULL DEFAULT '0',
  `nolicence` tinyint(3) NOT NULL DEFAULT '0',
  `agendahtml` text,
  `objectifhtml` text,
  `havestat` tinyint(3) NOT NULL DEFAULT '0',
  `description_conseil` text,
  `frais_admin` tinytext,
  PRIMARY KEY (`uid`),
  KEY `parent` (`pid`),
  KEY `deleted_hidden_libelle` (`deleted`,`hidden`,`libelle`(20))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=53 ;

当我进行解释时,我得到了:

id  select_type table   type    possible_keys   key key_len ref rows    Extra
1   SIMPLE  c   ALL deleted NULL    NULL    NULL    8658    Using where
1   SIMPLE  d   eq_ref  PRIMARY PRIMARY 4   tbs888dbnew.c.discipline    1   Using where

我尝试在删除/隐藏上放置一个索引,但现在我仍然使用 8658 key_len 作为第一行,比如如果我没有放置任何索引......我对 mysql 的了解有限,所以我不知道是什么去做(如果可能的话......)。

因此,如果有人有任何建议,请随意。

非常感谢你

4

1 回答 1

0

尝试更改索引定义中和deleted的顺序,或更改它们在查询的 where 子句中出现的顺序。hiddendeleted_hidden_libelle

它们应该按照它们在 where 子句中出现的顺序出现在索引中。

此外,您应该为您用于 JOIN 表的字段添加索引:

KEY `discipline` (`discipline`)
于 2014-06-05T19:42:39.483 回答