Explanation of the use of GROUP BY in grouped queries and the SQL execution order

Explanation of the use of GROUP BY in grouped queries and the SQL execution order

In SQL, GROUP BY is used to group data in the results of SELECT. Before using GROUP BY, you need to know some important rules.

  • 1. The GROUP BY clause can contain any number of columns. This means that you can group data within groups, providing more detailed control over data grouping.
  • 2. If you specify multiple groups in the GROUP BY clause, the data will be aggregated on the last specified group.
  • 3. Each column listed in the GROUP BY clause must be a search column or a valid expression (but not an aggregate function). If an expression is used in the SELECT, the same expression must be specified in the GROUP BY clause. Aliases cannot be used.
  • 4. Except for the aggregate calculation statement, each column in the SELECT statement must be given in the GROUP BY clause.
  • 5. If there is a NULL value in the grouping column, NULL will be returned as a group. If there are multiple rows with NULL values, they will be grouped together.
  • 6. The GROUP BY clause must come after the WHERE clause and before the ORDER BY clause.

Filter Groups

Excessive use of the HAVING clause for grouping. The HAVING clause supports all WHERE operations. The difference between HAVING and WHERE is that WHERE filters rows, while HAVING is used to filter groups.

Another way to understand the difference between WHERE and HAVING is that WHERE filters before grouping, while HAVING filters on a per-group basis after grouping.

Grouping and Sorting

Generally, when you use the GROUP BY clause, you should also use the ORDER BY clause. This is the only way to guarantee that the data is sorted correctly.

The execution order of SQL SELECT statement is:

  • 1. The from clause assembles data from different data sources;
  • 2. The where clause filters the rows based on the specified conditions;
  • 3. The group by clause divides the data into multiple groups;
  • 4. Use aggregate functions for calculations;
  • 5. Use the having clause to filter groups;
  • 6. Calculate all expressions;
  • 7. Use order by to sort the result set;
  • 8. Select the collection output.

Let me give you an example.

select candidate name, max(total score) as max total score from tb_Grade
where candidate name is not null
group by candidate name having max(total score) > 600
order by max total score

In the above example, the SQL statements are executed in the following order:

  • 1. First, execute the FROM clause to assemble the data source data from the tb_Grade table
  • 2. Execute the WHERE clause to filter all data in the tb_Grade table that is not NULL
  • 3. Execute the GROUP BY clause to group the tb_Grade table by the "Student Name" column
  • 4. Calculate the max() aggregate function and find the largest values ​​in the total score according to the "total score"
  • 5. Execute the HAVING clause to filter courses with a total score greater than 600 points.
  • 6. Execute the ORDER BY clause and sort the final results by "Max Score".

Note: If join and on are used, on will be executed before where, then join will be executed, and then where will be executed.

Attachment:

Aggregate functions in MySQL:

  • 1. count() returns the number of rows in a column
  • 2. avg() returns the average value of a column
  • 3. max() returns the maximum value of a column
  • 4. min() returns the minimum value of a column
  • 5. sum() returns the sum of a column
  • 6. distinct removes duplicate values

Note: avg() ignores rows with null values, count(*) counts all rows, and count(column) ignores rows with null values

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed tutorial on using Group By in SQL
  • Laravel implements Eloquent model group query and returns the number of each group groupBy()
  • Django ORM aggregate query and group query implementation details
  • Detailed explanation of the implementation principle of MySQL group query Group By
  • Detailed explanation of group query and join query statements in MySQL
  • SQL group query problem
  • Detailed explanation of the usage rules of group by in Oracle group query

<<:  Detailed graphic explanation of installing MySQL database and configuring Java project on Linux

>>:  A brief discussion on the lazy loading attribute pattern in JavaScript

Recommend

Detailed explanation of the steps to create a web server with node.js

Preface It is very simple to create a server in n...

Let's talk about destructuring in JS ES6

Overview es6 adds a new way to get specified elem...

React non-parent-child component parameter passing example code

React is a JAVASCRIPT library for building user i...

Solution to the problem of failure to insert emoji expressions into MySQL

Preface I always thought that UTF-8 was a univers...

How to install openssh from source code in centos 7

Environment: CentOS 7.1.1503 Minimum Installation...

How to check PCIe version and speed in Linux

PCIE has four different specifications. Let’s tak...

MySQL 5.7 installation and configuration tutorial under CentOS7 (YUM)

Installation environment: CentOS7 64-bit, MySQL5....

Detailed View of Hidden Columns in MySQL

Table of contents 1. Primary key exists 2. No pri...

Horizontal header menu implemented with CSS3

Result:Implementation Code html <nav class=&qu...

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...

How to mount a disk in Linux

When using a virtual machine, you may find that t...

Native JS to achieve blinds special effects

This article shares a blinds special effect imple...

Summary of Docker common commands and tips

Installation Script Ubuntu / CentOS There seems t...

A brief discussion of 12 classic problems in Angular

Table of contents 1. Please explain what are the ...