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 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:
|
<<: Detailed explanation of the this pointing problem in JavaScript
>>: A brief discussion on simulating multi-threaded and multi-process crashes in Linux
The <tfoot> tag is used to define the style...
The link-in style is to put all the styles in one...
The following problem occurred when installing my...
1. Transition Transition property usage: transiti...
Zen Coding It is a text editor plugin. In a text ...
1. Project Structure 2.CallTomcat.java package co...
This article example shares the specific code for...
1. What is As a markup language, CSS has a relati...
When nginx configures proxy_pass, the difference ...
Table of contents What is Express middleware? Req...
The warning points in this article have nothing t...
1. Phenomenon In the early morning, an index was ...
Introduction to kubectl kubectl is a command line...
This article example shares the specific code of ...
The official document states: By injecting the ro...