MySQL GROUP BY是否不必要地使用了Temporary?

时间:2019-03-13 19:36:55

标签: mysql explain

我正在尝试优化查询。使用EXPLAIN告诉我它是Using temporary。考虑到表的大小(20m +条记录),这确实效率很低。在查看MySQL文档Internal Temporary Tables时,我没有发现任何暗示我的查询中需要临时表的内容。我还尝试将ORDER BY设置为与GROUP BY相同,但仍然说“使用临时”,并且查询需要永远运行。我正在使用MySQL 5.7。

有没有一种方法可以避免对该查询使用临时表:

SELECT url,count(*) as sum 
FROM `digital_pageviews` as `dp` 
WHERE `publisher_uuid` = '8b83120e-3e19-4c34-8556-7b710bd7b812' 
GROUP BY url 
ORDER BY NULL;

这是我的表模式:

create table digital_pageviews
(
  id             int unsigned auto_increment
    primary key,
  visitor_uuid   char(36)            null,
  publisher_uuid char(36) default '' not null,
  property_uuid  char(36)            null,
  ip_address     char(15)            not null,
  referrer       text                null,
  url_delete     text                null,
  url            varchar(255)        null,
  url_tmp        varchar(255)        null,
  meta           text                null,
  date_created   timestamp           not null,
  date_updated   timestamp           null
)
  collate = utf8_unicode_ci;

create index digital_pageviews_url_index
  on digital_pageviews (url);

create index ndx_date_created
  on digital_pageviews (date_created);

create index ndx_property_uuid
  on digital_pageviews (property_uuid);

create index ndx_publisher_uuid
  on digital_pageviews (publisher_uuid);

create index ndx_visitor_uuid_page
  on digital_pageviews (visitor_uuid);

1 个答案:

答案 0 :(得分:4)

之所以需要一个临时表,是因为它既不能通过publisher_uuid进行过滤,又不能对没有索引的列进行排序。第一步是按publisher_uuid进行过滤,因此它使用publisher_uuid上的索引。

但是,接下来它必须对记录进行分组和排序,这将需要一个临时表,因为它不能使用执行此操作的索引。它不能使用索引的原因是它已经使用了publisher_uuid,而url字段上没有对它进行索引,因此无法进行分组依据或您要排序的字段。

要过滤publisher_uuid = '8b83120e-3e19-4c34-8556-7b710bd7b812',按url分组并按url排序的位置,请按以下顺序使用以下字段创建索引:

  • publisher_uuid
  • 网址
create index ndx_publisher_uuid
  on digital_pageviews (publisher_uuid, url);