1. Schematic diagram of group query For the above raw data, group by How should the above principle be written into code? select department_id,avg(salary) from test group by department_id; It can be clearly seen that after grouping by When the automatic allocation is completed, the intra-group operations will be performed according to the grouping function you wrote. That is to say, when you use the 2. Detailed explanation of the syntax of the group by keyword When learning MySQL, many newbies get stuck on Let’s think about the following question! When group by is used in a SQL statement, there must be a field after the select that uses an aggregate function (5 aggregate functions). But besides this aggregate function, can any other fields be added after select? The answer is definitely yes! However, this field has certain restrictions, and not all fields can be used. That is to say, when 3. A simple group query exampleExample: Group by department number deptno and calculate the average salary of each department. select deptno,avg(sal) avgs from emp group by deptno The results are as follows: 4. Pre-grouping and post-grouping screeningThis knowledge point is to help everyone understand why we should use the where filter? When should I use having filter? This knowledge point is also a tricky thing for novices learning MySQL. Don’t worry, there is nothing you can’t learn if you follow Mr. Huang to learn MySQL. 1) The concept of original table and result setThe original table refers to the table that actually exists in the database. The original table information is queried using [select * from table name]. The result set refers to the table that is finally displayed to us after adding any other restriction conditions in the SQL statement. Adding different restrictions will result in different query result sets. There is only one original table, but the result sets are various. 2) Huang’s great adviceWhenever there is an aggregate function as a condition in the demand, it must be filtered after grouping. If pre-grouping screening is possible, give priority to pre-grouping screening. (Considering performance issues) 3) Case StudyThe original dataset is as follows: ① Screening before grouping Exercise 1: Find the sum of the salaries of each department whose names contain the letter S. Exercise 2: Query the average salary of different departments with a salary greater than 2000. ② Screening after grouping Exercise 1: Query the department number and number of employees in departments where the number of employees is greater than 3. Exercise 2: Query the department number and maximum salary of each department whose maximum salary is greater than 3000. ③ Combined use of pre-grouping screening and post-grouping screening Exercise: Find the department numbers and average values of the employees who joined in 1981 and whose average salary among different departments is greater than 2000. 5. Group query (group by function)Exercise: Group employees by the length of their names, find the number of employees in each group, and filter out which ones have a number of employees > 3? select length(ename) len,count(*) counts from emp group by len having counts > 3; The results are as follows: 6. Group query (group by multiple fields)Exercise: Query the average salary of employees in each department and each job type. 7. Group by and order by, an old pairExercise 1: Query the average salary of employees in each department and sort them in descending order by average salary. Exercise 2: Query the average salary of employees in each department and sort them in ascending order by average salary. 8. Summary of group query 1) The grouping function is used as a condition and must be placed in the 2) If pre-grouping screening is possible, give priority to using it. ( 3) The above is the detailed content that MySQL beginners can say goodbye to the troubles of grouped aggregate queries. For more information about MySQL grouped aggregate queries, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: 10 kinds of loading animations implemented with CSS3, pick one and go?
>>: 5 ways to quickly remove the blank space of Inline-Block in HTML
MySQL is a database that I like very much. Today,...
1. float+overflow:hidden This method mainly trigg...
Table of contents Starting from type judgment Str...
Shopify Plus is the enterprise version of the e-c...
Preface The most widely used database in Linux is...
Using Technology itext.jar: Convert byte file inp...
Preface In daily development, when we use MySQL t...
MySQL is a multi-user managed database that can a...
1. View the renderings Select forward: Select bac...
Table of contents Preface 1. Install NJS module M...
Front-end technology layer (The picture is a bit e...
I recently started learning about database knowle...
1. Environment and preparation 1. Ubuntu 14.04 2....
environment: MAC_OS 10.12 Python 3.6 mysql 5.7.25...
Table of contents npm Install the loader Import P...