MySQL没有使用主索引

时间:2014-03-06 09:13:45

标签: mysql sql optimization

我有这个问题:

SELECT SQL_NO_CACHE
    COUNT(*) AS `numrows`
FROM
    (`citations`)
        LEFT JOIN
    `projects` ON `projects`.`project_id` = `citations`.`project_id`
        LEFT JOIN
    `users` ON `users`.`user_id` = `projects`.`user_id`
WHERE
    `users`.`role` = '0'
        AND `citations`.`created` BETWEEN 1360213200 AND 1360299599
        AND `citations`.`in_card` = '0'
        AND `citations`.`citation_id` NOT IN (SELECT 
            user_stats_citations.citation_id
        FROM
            user_stats_citations,
            user_stats FORCE INDEX (user_stats_type_index)
        WHERE
            user_stats_citations.user_stat_id = user_stats.id
                AND user_stats.type IN (69 , 70, 71, 75, 76));

我在用户表上有这些索引:

users            0  PRIMARY                             1  user_id      A                42836    (NULL)  (NULL)          BTREE                               
users            1  users_industry_id_index             1  industry_id  A                  118    (NULL)  (NULL)  YES     BTREE                               
users            1  users_sponsor_index                 1  sponsor      A                   12    (NULL)  (NULL)  YES     BTREE

这是EXPLAIN EXTENDED的输出

  id    select_type table   type    possible_keys   key key_len ref rows    filtered    Extra

  1 PRIMARY users   ALL PRIMARY \N  \N  \N  42836   100.00  Using where
  1 PRIMARY projects    ref PRIMARY\,projects_user_id_index projects_user_id_index  4   citelighter.users.user_id   1   100.00  Using where; Using index
  1 PRIMARY citations   ref citations_project_id_index  citations_project_id_index  4   citelighter.projects.project_id 4   100.00  Using index condition; Using where
  2 SUBQUERY    user_stats  range   user_stats_type_index   user_stats_type_index   2   \N  410768  100.00  Using where; Using index
  2 SUBQUERY    user_stats_citations    ref user_stats_citations_index_user_stat_id\,user_stats_citations_index_citation_id user_stats_citations_index_user_stat_id 8   citelighter.user_stats.id   1   100.00  \N

我尝试在用户LEFT JOIN上添加FORCE INDEX,但未使用索引。你可以帮我解决这个问题吗,因为这个查询在我的本地和生产环境上花费了10秒钟。

2 个答案:

答案 0 :(得分:1)

我注意到的第一件事是where子句中的这个谓词:WHERE users.role = '0'会将你的LEFT JOIN转换为INNER JOIN s,所以你也可以将它们作为内连接。< / p>

其次,MySQL在优化相关子查询时遇到问题,并且在派生表中也可能表现不佳。例如在this simple query

SELECT *
FROM (SELECT * FROM T) T
JOIN (SELECT * FROM T) T2 ON T.ID = T2.ID;

即使ID是T上的主键,主键也不会用于连接,因为它不能从派生表中级联出来。同样有时你写:

SELECT *
FROM T
WHERE Afield NOT IN (SELECT Afield FROM T WHERE AnotherField = 1);

MySQL不一定具体化子查询并使用它,它通常会将查询重写为:

SELECT *
FROM T
WHERE NOT EXISTS (SELECT 1 
                    FROM T T2 
                    WHERE T.Afield = T2.Afield  
                    AND T2.AnotherField = 1);

对外部查询中的每一行执行子查询,因此如果外部查询中有大量行,则执行每行的子查询会变得非常昂贵。解决方案是尽可能避免子查询。在您的情况下,您可以将查询重写为:

SELECT  SQL_NO_CACHE
        COUNT(*) AS `numrows`
FROM    `citations`
        INNER JOIN `projects` 
            ON `projects`.`project_id` = `citations`.`project_id`
        INNER JOIN `users` 
            ON `users`.`user_id` = `projects`.`user_id`
        LEFT JOIN (user_stats_citations
            INNER JOIN user_stats
                ON user_stats_citations.user_stat_id = user_stats.id
                AND user_stats.type IN (69 , 70, 71, 75, 76))
            ON user_stats_citations.citation_id = `citations`.`citation_id`
WHERE   `users`.`role` = '0'
AND     `citations`.`created` BETWEEN 1360213200 AND 1360299599
AND     `citations`.`in_card` = '0'
AND      user_stats_citations.citation_id IS NULL;

没有子查询时,没有派生表,或者逐行执行子查询。这应该可以缩短执行时间。

答案 1 :(得分:0)

这给你带来了什么?

SELECT COUNT(*) numrows
  FROM citations c
  JOIN projects p
    ON p.project_id = c.project_id
  JOIN users u
    ON u.user_id = p.user_id

  LEFT
  JOIN 
     ( SELECT uc.citation_id
         FROM user_stats_citations uc
         JOIN user_stats us
           ON uc.user_stat_id = us.id
          AND us.type IN (69,70,71,75,76)
     ) x
    ON x.citation_id = c.citation_id
 WHERE u.role = 0
   AND c.created BETWEEN 1360213200 AND 1360299599
   AND c.in_card = 0
   AND x.citation_id IS NULL