-1
 CREATE TABLE `words_data` (
  `id` int(11) NOT NULL auto_increment,
  `words` varchar(50) default '',
  `pid` int(8) default '0',
  `baiyephp` int(11) default '0',
  PRIMARY KEY  (`id`),
  KEY `baiyephp` (`baiyephp`),
  KEY `words` (`words`),
  KEY `pid` (`pid`),
  KEY `pid_id` (`id`,`pid`)
 ) ENGINE=MyISAM AUTO_INCREMENT=1961736 DEFAULT CHARSET=utf8

解释语句:explain select id from words_data where pid=232632;possible_keys列中没有列出任何键。

4

1 回答 1

0

在我的测试环境中解释产量:

Impossible WHERE noticed after reading const tables

这似乎表明 pid=232632 的表中没有数据

于 2012-09-05T08:01:34.833 回答