What#39;s faster, SELECT DISTINCT or GROUP BY in MySQL?(在 MySQL 中,SELECT DISTINCT 或 GROUP BY 哪个更快?)
问题描述
如果我有一张桌子
CREATE TABLE users (
id int(10) unsigned NOT NULL auto_increment,
name varchar(255) NOT NULL,
profession varchar(255) NOT NULL,
employer varchar(255) NOT NULL,
PRIMARY KEY (id)
)
我想获得 profession
字段的所有唯一值,什么会更快(或推荐):
and I want to get all unique values of profession
field, what would be faster (or recommended):
SELECT DISTINCT u.profession FROM users u
或
SELECT u.profession FROM users u GROUP BY u.profession
?
推荐答案
它们本质上是等价的(实际上这就是一些数据库在幕后实现 DISTINCT
的方式).
They are essentially equivalent to each other (in fact this is how some databases implement DISTINCT
under the hood).
如果其中一个更快,它将是 DISTINCT
.这是因为,尽管两者相同,但查询优化器必须捕捉到这样一个事实,即您的 GROUP BY
没有利用任何组成员,而只是利用了他们的键.DISTINCT
明确说明了这一点,因此您可以使用稍微笨一点的优化器.
If one of them is faster, it's going to be DISTINCT
. This is because, although the two are the same, a query optimizer would have to catch the fact that your GROUP BY
is not taking advantage of any group members, just their keys. DISTINCT
makes this explicit, so you can get away with a slightly dumber optimizer.
如有疑问,请测试!
这篇关于在 MySQL 中,SELECT DISTINCT 或 GROUP BY 哪个更快?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 MySQL 中,SELECT DISTINCT 或 GROUP BY 哪个更快?
基础教程推荐
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01