为什么我的表没有使用索引?

时间:2010-07-01 10:44:58

标签: mysql database

我看不到我的桌子正在使用索引... EXPLAIN给了我这个

id select_type  table      type  possible_keys  key key_len  ref   rows Extra
1  SIMPLE           table1     const  web       web  258     const  1    
1  SIMPLE           table2     const  web       web  258     const  1    
1  SIMPLE           table3     const  web       web  258     const  1    
1  SIMPLE           table4     const  web       web  258     const  1   

1 个答案:

答案 0 :(得分:1)

它正在使用名为web的索引。关键意味着指数。

id select_type      table      type   possible_keys  key  key_len  ref    rows Extra
1  SIMPLE           table1     const  web            web  258      const  1    
1  SIMPLE           table2     const  web            web  258      const  1    
1  SIMPLE           table3     const  web            web  258      const  1    
1  SIMPLE           table4     const  web            web  258      const  1
                                                     ^^^