写点什么

MySQL 中的 distinct 和 group by 哪个效率更高?

作者:Steven
  • 2023-02-07
    河南
  • 本文字数:4055 字

    阅读完需:约 13 分钟

先说大致的结论(完整结论在文末):

1.在语义相同,有索引的情况下:group by和distinct都能使用索引,效率相同。

2.在语义相同,无索引的情况下:distinct效率高于group by。原因是distinct 和 group by都会进行分组操作,但group by可能会进行排序,触发filesort,导致sql执行效率低下。


基于这个结论,你可能会问:

为什么在语义相同,有索引的情况下,group by 和 distinct 效率相同?

在什么情况下,group by 会进行排序操作?


带着这两个问题找答案。接下来,我们先来看一下 distinct 和 group by 的基础使用。


distinct 的使用

distinct 用法

SELECT DISTINCT columns FROM table_name WHERE where_conditions;

例如:

mysql> select distinct age from student;

+------+

| age |

+------+

| 10 |

| 12 |

| 11 |

| NULL |

+------+

4 rows in set (0.01 sec)

DISTINCT 关键词用于返回唯一不同的值。放在查询语句中的第一个字段前使用,且作用于主句所有列。

如果列具有 NULL 值,并且对该列使用 DISTINCT 子句,MySQL 将保留一个 NULL 值,并删除其它的 NULL 值,因为 DISTINCT 子句将所有 NULL 值视为相同的值。

distinct 多列去重

distinct 多列的去重,则是根据指定的去重的列信息来进行,即只有所有指定的列信息都相同,才会被认为是重复的信息。

SELECT DISTINCT column1,column2 FROM table_name WHERE where_conditions;

mysql> select distinct sex,age from student;

+--------+------+

| sex | age |

+--------+------+

| male | 10 |

| female | 12 |

| male | 11 |

| male | NULL |

| female | 11 |

+--------+------+

5 rows in set (0.02 sec)


group by 的使用

对于基础去重来说,group by 的使用和 distinct 类似:

单列去重

语法:

SELECT columns FROM table_name WHERE where_conditions GROUP BY columns;

执行:

mysql> select age from student group by age;

+------+

| age |

+------+

| 10 |

| 12 |

| 11 |

| NULL |

+------+

4 rows in set (0.02 sec)


多列去重

语法:

SELECT columns FROM table_name WHERE where_conditions GROUP BY columns;

执行:

mysql> select sex,age from student group by sex,age;

+--------+------+

| sex | age |

+--------+------+

| male | 10 |

| female | 12 |

| male | 11 |

| male | NULL |

| female | 11 |

+--------+------+

5 rows in set (0.03 sec)


区别示例

两者的语法区别在于,group by 可以进行单列去重,group by 的原理是先对结果进行分组排序,然后返回每组中的第一条数据。且是根据 group by 的后接字段进行去重的。

例如:

mysql> select sex,age from student group by sex;

+--------+-----+

| sex | age |

+--------+-----+

| male | 10 |

| female | 12 |

+--------+-----+

2 rows in set (0.03 sec)


distinct 和 group by 原理

在大多数例子中,DISTINCT 可以被看作是特殊的 GROUP BY,它们的实现都基于分组操作,且都可以通过松散索引扫描、紧凑索引扫描来实现。


DISTINCT GROUP BY 都是可以使用索引进行扫描搜索的。例如以下两条 sql(只单单看表格最后 extra 的内容),我们对这两条 sql 进行分析,可以看到,在 extra 中,这两条 sql 都使用了紧凑索引扫描 Using index for group-by。

所以,在一般情况下,对于相同语义的 DISTINCT 和 GROUP BY 语句,我们可以对其使用相同的索引优化手段来进行优化。

mysql> explain select int1_index from test_distinct_groupby group by int1_index;

+----+-------------+-----------------------+------------+-------+---------------+---------+---------+------+------+----------+--------------------------+

| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |

+----+-------------+-----------------------+------------+-------+---------------+---------+---------+------+------+----------+--------------------------+

| 1 | SIMPLE | test_distinct_groupby | NULL | range | index_1 | index_1 | 5 | NULL | 955 | 100.00 | Using index for group-by |

+----+-------------+-----------------------+------------+-------+---------------+---------+---------+------+------+----------+--------------------------+

1 row in set (0.05 sec)

mysql> explain select distinct int1_index from test_distinct_groupby;

+----+-------------+-----------------------+------------+-------+---------------+---------+---------+------+------+----------+--------------------------+

| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |

+----+-------------+-----------------------+------------+-------+---------------+---------+---------+------+------+----------+--------------------------+

| 1 | SIMPLE | test_distinct_groupby | NULL | range | index_1 | index_1 | 5 | NULL | 955 | 100.00 | Using index for group-by |

+----+-------------+-----------------------+------------+-------+---------------+---------+---------+------+------+----------+--------------------------+

1 row in set (0.05 sec)


但对于 GROUP BY 来说,在 MYSQL8.0 之前,GROUP Y 默认会依据字段进行隐式排序。

可以看到,下面这条 sql 语句在使用了临时表的同时,还进行了 filesort。

mysql> explain select int6_bigger_random from test_distinct_groupby GROUP BY int6_bigger_random;

+----+-------------+-----------------------+------------+------+---------------+------+---------+------+-------+----------+---------------------------------+

| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |

+----+-------------+-----------------------+------------+------+---------------+------+---------+------+-------+----------+---------------------------------+

| 1 | SIMPLE | test_distinct_groupby | NULL | ALL | NULL | NULL | NULL | NULL | 97402 | 100.00 | Using temporary; Using filesort |

+----+-------------+-----------------------+------------+------+---------------+------+---------+------+-------+----------+---------------------------------+

1 row in set (0.04 sec)


隐式排序

对于隐式排序,我们可以参考 Mysql 官方的解释:

https://dev.mysql.com/doc/refman/5.7/en/order-by-optimization.html

GROUP BY implicitly sorts by default (that is, in the absence of ASC or DESC designators for GROUP BY columns). However, relying on implicit GROUP BY sorting (that is, sorting in the absence of ASC or DESC designators) or explicit sorting for GROUP BY (that is, by using explicit ASC or DESC designators for GROUP BY columns) is deprecated. To produce a given sort order, provide an ORDER BY clause.

大致解释一下:

GROUP BY 默认隐式排序(指在 GROUP BY 列没有 ASC 或 DESC 指示符的情况下也会进行排序)。然而,GROUP BY 进行显式或隐式排序已经过时(deprecated)了,要生成给定的排序顺序,请提供 ORDER BY 子句。


所以,在 Mysql8.0 之前,Group by 会默认根据作用字段(Group by 的后接字段)对结果进行排序。在能利用索引的情况下,Group by 不需要额外进行排序操作;但当无法利用索引排序时,Mysql 优化器就不得不选择通过使用临时表然后再排序的方式来实现 GROUP BY 了。

且当结果集的大小超出系统设置临时表大小时,Mysql 会将临时表数据 copy 到磁盘上面再进行操作,语句的执行效率会变得极低。这也是 Mysql 选择将此操作(隐式排序)弃用的原因。


基于上述原因,Mysql 在 8.0 时,对此进行了优化更新:

https://dev.mysql.com/doc/refman/8.0/en/order-by-optimization.html

Previously (MySQL 5.7 and lower), GROUP BY sorted implicitly under certain conditions. In MySQL 8.0, that no longer occurs, so specifying ORDER BY NULL at the end to suppress implicit sorting (as was done previously) is no longer necessary. However, query results may differ from previous MySQL versions. To produce a given sort order, provide an ORDER BY clause.

大致解释一下:

从前(Mysql5.7 版本之前),Group by 会根据确定的条件进行隐式排序。在 mysql 8.0 中,已经移除了这个功能,所以不再需要通过添加 order by null 来禁止隐式排序了,但是,查询结果可能与以前的 MySQL 版本不同。要生成给定顺序的结果,请按通过 ORDER BY 指定需要进行排序的字段。


因此,我们的结论也出来了:

在语义相同,有索引的情况下:

group by 和 distinct 都能使用索引,效率相同。因为 group by 和 distinct 近乎等价,distinct 可以被看做是特殊的 group by。

在语义相同,无索引的情况下:

distinct 效率高于 group by。原因是 distinct 和 group by 都会进行分组操作,但 group by 在 Mysql8.0 之前会进行隐式排序,导致触发 filesort,sql 执行效率低下。

但从 Mysql8.0 开始,Mysql 就删除了隐式排序,所以,此时在语义相同,无索引的情况下,group by 和 distinct 的执行效率也是近乎等价的。


推荐 group by 的原因

group by 语义更为清晰

group by 可对数据进行更为复杂的一些处理

相比于 distinct 来说,group by 的语义明确。且由于 distinct 关键字会对所有字段生效,在进行复合业务处理时,group by 的使用灵活性更高,group by 能根据分组情况,对数据进行更为复杂的处理,例如通过 having 对数据进行过滤,或通过聚合函数对数据进行运算。


发布于: 刚刚阅读数: 4
用户头像

Steven

关注

还未添加个人签名 2023-01-09 加入

还未添加个人简介

评论

发布
暂无评论
MySQL中的distinct和group by哪个效率更高?_Steven_InfoQ写作社区