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.
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:
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:
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:
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 graphic explanation of installing MySQL database and configuring Java project on Linux
>>: A brief discussion on the lazy loading attribute pattern in JavaScript
Preface It is very simple to create a server in n...
Overview es6 adds a new way to get specified elem...
React is a JAVASCRIPT library for building user i...
Preface I always thought that UTF-8 was a univers...
Environment: CentOS 7.1.1503 Minimum Installation...
PCIE has four different specifications. Let’s tak...
Installation environment: CentOS7 64-bit, MySQL5....
When building a website, HTML language may seem un...
Table of contents 1. Primary key exists 2. No pri...
Result:Implementation Code html <nav class=&qu...
This article records the process of upgrading MyS...
When using a virtual machine, you may find that t...
This article shares a blinds special effect imple...
Installation Script Ubuntu / CentOS There seems t...
Table of contents 1. Please explain what are the ...