mysql 5.1.37查询索引未被使用

时间:2011-03-24 18:18:38

标签: mysql indexing explain

我的查询效果不佳。服务器版本:5.1.37-1ubuntu5.1(Ubuntu)

SELECT * FROM `influencers` WHERE (`influencers`.`twitter_id` = 86861293)  LIMIT 1

show create table influencers

influencers  CREATE TABLE `influencers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`twitter_id` varchar(255) DEFAULT NULL,
`display_name` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`screen_name` varchar(255) DEFAULT NULL,
 PRIMARY KEY (`id`),
 UNIQUE KEY `index_influencers_on_twitter_id` (`twitter_id`),
 KEY `influencers_screen_name` (`screen_name`)
 ) ENGINE=InnoDB AUTO_INCREMENT=504126 DEFAULT CHARSET=latin1  


explain SELECT * FROM `influencers` WHERE (`influencers`.`twitter_id` = 86861293)  LIMIT 1


id  select_type  table        type  possible_keys                    key     key_len  ref     rows    Extra        
--  -----------  -----------  ----  -------------------------------  ------  -------  ------  ------  -----------  
1   SIMPLE       influencers  ALL   index_influencers_on_twitter_id  (null)  (null)   (null)  553716  Using where  

该表中有547545行。

正如您所看到的,解释具有可能的键,但未使用实际键显示。

有什么想法吗?似乎这应该工作,我正在做一些愚蠢的事情。

1 个答案:

答案 0 :(得分:1)

由于twitter_id是VARCHAR,因此您应该将值放在WHERE子句中的引号中,以避免任何可能阻止MySQL使用最佳执行计划的隐式类型转换:

SELECT * 
FROM influencers
WHERE influencers.twitter_id = '86861293'
LIMIT 1