1: Statement order of grouping function1 SELECT ... 2 FROM ... 3 WHERE ... 4 GROUP BY ... 5 HAVING ... 6 ORDER BY ... 2. The difference between WHERE and HAVING filter conditionsData source location keyword WHERE Original table ORDER BY statement before WHERE HAVING Grouped result set after ORDER BY statement HAVING Three: Examples#1. Query the maximum age of students in each classSELECT MAX(age),class FROM STU_CLASS GROUP BY CLASS; # 2. Query the maximum age of male and female students in each class SELECT MAX(age), class, sex FROM STU_CLASS GROUP BY class,sex; #3. Query the average age of boys and girls in each class, and the average age is greater than 15 years old SELECT AVG (age), class, sex FROM STU_CLASS GROUP BY class,sex HAVING avg(age) > 15; Four: Note1. Usually, the GROUP BY keyword is used together with an aggregate function. First, the GROUP BY keyword is used to group the records, and then the aggregate function is used to calculate each group. The GROUP BY keyword and aggregate functions are often needed when performing statistics. The above is the detailed content of the detailed explanation of the group by statement of MySQL database group query. For more information about MySQL database statements, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Install MySQL (including utf8) using Docker on Windows/Mac
>>: Detailed explanation of Grid layout and Flex layout of display in CSS3
For example, if I have a Jenkins server in my int...
First of all, this post is dedicated to Docker no...
Table of contents 1. Build using the official sca...
MySQL 5.7.13 installation tutorial for Mac, very ...
1.core file When a Segmentation fault (core dumpe...
Get the mongo image sudo docker pull mongo Run th...
Table of contents Explanation of v-text on if for...
<br />Web Design and Production Test Part I ...
Preface I wrote an article about rem adaptation b...
jQuery realizes the effect of theater seat select...
Solution to 1449 and 1045 exceptions when connect...
1. Check the character set of MySQL show variable...
1. It is best to add a sentence like this before t...
This article shares the specific code of jQuery t...
Table of contents 1. MySQL Architecture 2. Networ...