0

我正在尝试优化我的索引以执行 JOIN,然后 GROUP BY 连接表中的一列。

我正在通过运行下面的脚本进行测试,使用索引,但我似乎无法弄清楚第三个查询需要哪些索引。

已解决:添加虚拟数据会使 sql 行为不同,我之前尝试过的索引之一工作得很好!

CREATE DATABASE stats_idx_test;

USE stats_idx_test;

DROP TABLE stats;
CREATE TABLE stats (article_id INT, cnt INT, type INT);
ALTER TABLE stats ADD INDEX idxs1 (article_id, cnt, type);

DROP TABLE article;
CREATE TABLE article (id INT, cat_id INT);
ALTER TABLE article ADD INDEX idxa2 (cat_id, id);

INSERT INTO article (id, cat_id) VALUES (1, 1);
INSERT INTO stats (article_id, cnt, type) VALUES (1, 9, 1);
INSERT INTO stats (article_id, cnt, type) VALUES (1, 13, 2);

EXPLAIN 
SELECT SUM(stats.cnt)
FROM stats
WHERE stats.type = 1 AND stats.article_id = 1;
-- Using where; Using index

EXPLAIN 
SELECT article.cat_id, SUM(stats.cnt)
FROM stats
JOIN article ON (stats.article_id = article.id)
WHERE stats.type = 1 AND article.cat_id = 1;
-- Using where; Using index

EXPLAIN 
SELECT article.cat_id, SUM(stats.cnt)
FROM stats
JOIN article ON (stats.article_id = article.id)
WHERE stats.type = 1
GROUP BY article.cat_id;
-- Using index
-- Using where; Using index
4

2 回答 2

0

对于 group by,您需要 cat_id 上的索引。您拥有的当前索引无法应用。

分组和索引

此外,您应该考虑将 id 作为主键。

于 2013-03-07T18:20:40.160 回答
0

添加虚拟数据会使 sql 表现不同,我之前尝试过的索引之一工作得很好!

于 2013-03-08T09:12:43.077 回答