使用WHERE子句中的IN在MySQL中执行内部联接时避免全表扫描

时间:2013-10-07 17:56:07

标签: mysql

在WHERE子句中使用IN在MySQL中执行内连接时,如何避免全表扫描?例如:

explain SELECT
-> COUNT(DISTINCT(n.nid))
-> FROM node n
-> INNER JOIN term_node tn ON n.nid = tn.nid
-> INNER JOIN content_type_article ca ON n.nid = ca.nid
-> WHERE tn.tid IN (67,100)
-> ;
+----+-------------+-------+--------+----------------------------------+---------+---------+----------------------+-------+--------------------------+
| id | select_type | table | type   | possible_keys                    | key     | key_len | ref                  | rows  | Extra                    |
+----+-------------+-------+--------+----------------------------------+---------+---------+----------------------+-------+--------------------------+
|  1 | SIMPLE      | tn    | ALL    | PRIMARY,nid                      | NULL    | NULL    | NULL                 | 42180 | Using where              |
|  1 | SIMPLE      | ca    | ref    | nid,field_article_date_nid_index | nid     | 4       | drupal_mm_qas.tn.nid |     1 | Using index              |
|  1 | SIMPLE      | n     | eq_ref | PRIMARY                          | PRIMARY | 4       | drupal_mm_qas.ca.nid |     1 | Using where; Using index |
+----+-------------+-------+--------+----------------------------------+---------+---------+----------------------+-------+--------------------------+
3 rows in set (0.00 sec)

1 个答案:

答案 0 :(得分:0)

似乎你正在过滤一个mysql认为不够有选择性的列。当过滤器的基数太低时(即,该过滤器的不同行数很少),mysql认为,大多数情况下,fts会更快。

要确认,请显示SELECT COUNT(DISTINCT tn.tid) FROM term_node tnSELECT COUNT(*) FROM term_node tn

的结果