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

Typical cases of MySQL index failure

Table of contents Typical Cases Appendix: Common ...

How to configure the My.ini file when installing MySQL5.6.17 database

I recently used the MySql database when developin...

How to use http and WebSocket in CocosCreator

Table of contents 1. HttpGET 2. HTTP POST WebSock...

vue3+ts+EsLint+Prettier standard code implementation

Table of contents use Use of EsLint Add a profile...

HTML adaptive table method

<body style="scroll:no"> <tabl...

MySQL 8.0.13 installation and configuration method graphic tutorial under win10

I would like to share the installation and config...

Introduction to the use of select optgroup tag in html

Occasionally, I need to group select contents. In ...

A simple way to achieve scrolling effect with HTML tag marquee (must read)

The automatic scrolling effect of the page can be...

jenkins+gitlab+nginx deployment of front-end application

Table of contents Related dependency installation...

How to upload and download files between Linux server and Windows system

Background: Linux server file upload and download...

Details about the like operator in MySQL

1. Introduction When filtering unknown or partial...

Sharing of the fast recovery solution for Mysql large SQL files

Preface In the process of using MySQL database, i...