In daily development tasks, we often use MYSQL's GROUP BY grouping to obtain statistical data based on the grouping fields in the data table. For example, there is a student course selection table with the following structure:
We want to count how many students have signed up for each course, and apply the following SQL: SELECT Subject, Count(*) FROM Subject_Selection GROUP BY Subject The following results are obtained:
Because the table records that 5 students chose ITB001 and 2 students chose MKB114. The reasons for this result are: GROUP BY X means putting all records with the same X field value into one group. What about GROUP BY X, Y? GROUP BY X, Y means putting all records with the same X and Y field values into one group. Next, we need to count how many people choose each subject each semester, and apply the following SQL: SELECT Subject, Semester, Count(*) FROM Subject_Selection GROUP BY Subject, Semester The above SQL means to group the data in the Subject_Selection table, put the records with the same Subject and Semester field values into the same group, and then apply aggregate functions (COUNT, SUM, AVG, etc.) to the data in each group. The result is:
From the records in the table, we can see that the grouping result is correct. Three students chose ITB001 in the first semester, two students chose ITB001 in the second semester, and two students chose MKB114 in the first semester. No one chose MKB114 in the second semester. The above article about mysql group by to group multiple fields is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Source code reveals why Vue2 this can directly obtain data and methods
>>: Detailed steps for deepin20 to install NVIDIA closed-source drivers
Front-end project packaging Find .env.production ...
<br />Original text: http://andymao.com/andy...
HTML is a hybrid language used for publishing on ...
Background description: On an existing load balan...
Pessimistic Lock Pessimistic lock, considers the ...
Copy code The code is as follows: 1. Sina Weibo &...
This article shares the specific code for JavaScr...
DetachKeyPair Unbind SSH key pairs from one or mo...
1. Installation apt-get install mysql-server requ...
Preface When I was studying the front end before,...
Table of contents Typical Cases Appendix: Common ...
Table of contents Preface: 1. Introduction to rol...
Preface I have always wanted to know how a SQL st...
1. Preparation before installation Check the data...
Writing a Dockerfile Configure yum source cd /tmp...