1. Aggregate QueryWhen accessing a database, you often need to perform statistical summary on a column of data in a table, such as sum, maximum value, minimum value, average value, etc. At this time, you need to use an aggregate function. The so-called aggregate function is a function used for summary. Aggregation is to aggregate multiple rows into one row. Common aggregation functions are as follows: 1. COUNT function The For example, to count the number of rows in all data: SELECT COUNT(*) FROM users;
SELECT COUNT(user_name) FROM users; 2. SUM functionUsed to calculate the sum of data in any column. For example, to calculate the sum of all users' ages: SELECT sum(age) FROM users; 3. AVG functionUsed to calculate the average of data in any column. For example, to calculate the average age of all users: SELECT AVG(age) FROM users; 4. MAX function and MIN function The For example, to calculate the maximum and minimum ages among all users: SELECT MAX(age),MIN(age) FROM users;
2. Group Query Aggregate functions are used to summarize statistics for all data in a table. You can also use Syntax format: SELECT <field name>,... FROM <table name> GROUP BY <field name>,...; For example, group users by their city and count the sum of users in each city: SELECT city,count(*) FROM users GROUP BY city; +-------+----------+ | city | count(*) | +-------+----------+ | Beijing | 60 | | Shanghai | 45 | | NULL | 80 | | Jinan | 12 | +-------+----------+ From the results, we can see that fields with SELECT city,count(*) FROM users WHERE city IS NOT NULL GROUP BY city; 3. Filter the aggregation results When we use For example, group users by their city and filter groups with more than 40 users: SELECT city,COUNT(*) AS num FROM users GROUP BY city HAVING num>40; Another example: group users by their city, and filter out groups where the average age of users is less than 25. SELECT city,AVG(age) AS avg_age FROM users GROUP BY city HAVING avg_age<25; 1. Elements of the HAVING clauseThere are three types of elements that can be used in the HAVING clause:
4. Sort the query results Sorting can be used in Syntax format: SELECT <field name>,... FROM <table name> ORDER BY <field name> ASC/DESC,...; For example, to sort the records in the users table in ascending order by age: SELECT * FROM users ORDER BY age ASC;
For example, to sort the records in the users table in descending order by age: SELECT * FROM users ORDER BY age DESC; 1. Specify multiple sort keys Multiple sort keys can be specified in SELECT * FROM student ORDER BY age DESC,register_time ASC; When sorting multiple fields, separate them with “,”. 2. Sorting using aggregate functions For example, group users by their city and sort by the number of users in each group: SELECT city,COUNT(*) AS num FROM users GROUP BY city ORDER BY num; This is the end of this article about SQL aggregation, grouping and sorting. For more relevant SQL aggregation, grouping and sorting content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of angular content projection
>>: Detailed explanation of the differences between similar tags and attributes in HTML
Elastic stack, commonly known as ELK stack, is a ...
Table of contents Small but beautiful Keep it sim...
This article mainly introduces the example of rea...
Preface Since many friends say they don’t have Ma...
The <canvas> element is designed for client...
Samba Services: This content is for reference of ...
Table of contents Throttling and anti-shake conce...
Table of contents 1. Arithmetic operators 2. Comp...
Achieve results Implementation Code html <div ...
Table of contents 1. Data Type 1. What is MySQL s...
This article shares with you the installation and...
Shopify Plus is the enterprise version of the e-c...
Operating system: Window10 MySQL version: 8.0.13-...
As a newbie who has just come into contact with t...
Drop-down menus are also very common in real life...