The difference between distinct and group by in MySQL

The difference between distinct and group by in MySQL

Simply put, distinct is used to remove duplicates, while group by is designed to aggregate statistics. The two have some similarities in the functions they can achieve, but they should be carefully distinguished.

The simple deduplication operation using DISTINCT is faster than GROUP BY.

distinct supports single-column and multi-column deduplication.
The single-column deduplication method is simple and easy to understand, that is, only one identical value is retained.
Multiple columns are deduplicated based on the specified deduplicated column information, that is, only when all the specified column information is the same will it be considered as duplicate information.

The frequency of group by is relatively high, but just like its function, its purpose is to perform aggregate statistics. Although it is also possible to achieve the function of deduplication, this is not its strong point.

the difference:

1) distinct simply removes duplicate rows from the result;

Group by means grouping by specified columns, and generally aggregate functions are used in select at this time.

2) distinct is to display different records.

Group by means to sort the records by category before querying.

GROUP BY must include an aggregate function in the query results, while DISTINCT does not.

This is the end of this article about the difference between distinct and group by in MySQL. For more information about the difference between distinct and group by, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A brief discussion on MySQL select optimization solution
  • MySQL select results to perform update example tutorial
  • Solve the problem that MySQL read-write separation causes data not to be selected after insert
  • How MySQL Select Statement is Executed
  • Detailed example of using the distinct method in MySQL
  • Should I use distinct or group by to remove duplicates in MySQL?
  • Let's talk about the LIMIT statement in MySQL in detail
  • MySQL series tutorial on understanding the use of union (all) and limit and exists keywords
  • The impact of limit on query performance in MySQL
  • Use of select, distinct, and limit in MySQL

<<:  Detailed explanation of the this pointing problem in JavaScript

>>:  A brief discussion on simulating multi-threaded and multi-process crashes in Linux

Recommend

Detailed explanation of JS ES6 coding standards

Table of contents 1. Block scope 1.1. let replace...

How to publish a locally built docker image to dockerhub

Today we will introduce how to publish the local ...

Blog Design Web Design Debut

The first web page I designed is as follows: I ha...

MySQL transaction details

Table of contents Introduction Four characteristi...

Detailed explanation of Vue options

Table of contents 1. What are options? 2. What at...

About CSS floating and canceling floating

Definition of Float Sets the element out of the n...

Install ethereum/Ethereum from scratch under CentOS7

Table of contents Preface Add sudo write permissi...

Summary of MySQL development standards and usage skills

1. Naming conventions 1. Database names, table na...

Django+vue registration and login sample code

register The front-end uses axios in vue to pass ...

Solution to the problem that Docker container cannot be stopped or killed

Docker version 1.13.1 Problem Process A MySQL con...

Detailed explanation of grep and egrep commands in Linux

rep / egrep Syntax: grep [-cinvABC] 'word'...

JavaScript knowledge: Constructors are also functions

Table of contents 1. Definition and call of const...