-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 ステートメント: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 に答える