SQL Aggregation, Grouping, and Sorting

SQL Aggregation, Grouping, and Sorting

1. Aggregate Query

When 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 count function is used to count the number of rows in a table.

For example, to count the number of rows in all data:

SELECT COUNT(*) FROM users;

Note: COUNT(*) will get the number of rows containing NULL values. If you want to exclude rows containing NULL values, you can use count(field name) to get the number of rows other than NULL values.

SELECT COUNT(user_name) FROM users;

2. SUM function

Used 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 function

Used 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 MAX function is used to calculate the maximum value of data in any column, and the MIN function is used to calculate the minimum value of data in any column.

For example, to calculate the maximum and minimum ages among all users:

SELECT MAX(age),MIN(age) FROM users;

Note: The MAX function and MIN function are applicable to columns of almost all data types, while the SUM function and AVG function are only applicable to columns of numeric types.

2. Group Query

Aggregate functions are used to summarize statistics for all data in a table. You can also use GROUP BY clause to divide the data into several groups and then perform statistical summaries.

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 NULL value will also be listed as a group. If you want to exclude, you can use the WHERE clause.

SELECT city,count(*) FROM users WHERE city IS NOT NULL GROUP BY city;

3. Filter the aggregation results

When we use GROUP BY clause to group, sometimes we need to filter the grouped aggregate results. We may first think of using the WHERE clause, but in fact, it is not the case. Instead, we use the HAVING clause. The role of HAVING is the same as that of WHERE , both of which are filtering, but WHERE is used to filter data rows, while HAVING is used to filter grouped aggregate results.

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 clause

There are three types of elements that can be used in the HAVING clause:

  • constant
  • Aggregate functions
  • The column name specified in GROUP BY clause (i.e., the aggregate key)

4. Sort the query results

Sorting can be used in SQL queries to sort data in ascending ( ASC ) or descending ( DESC ) order. The default is ascending order.

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;

Note: ASC can be omitted for ascending order, but DESC is required for descending order.

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 ORDER BY clause. For example, to sort the records in the users table in descending order of age and ascending order of registration time:

SELECT * FROM student ORDER BY age DESC,register_time ASC;

When sorting multiple fields, separate them with “,”.

2. Sorting using aggregate functions

ORDER BY clause can also use the results of aggregate functions for sorting.

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 MySQL single table query operation examples [syntax, constraints, grouping, aggregation, filtering, sorting, etc.]

<<:  Detailed explanation of angular content projection

>>:  Detailed explanation of the differences between similar tags and attributes in HTML

Recommend

How to build a multi-node Elastic stack cluster on RHEL8 /CentOS8

Elastic stack, commonly known as ELK stack, is a ...

MySQL data type selection principles

Table of contents Small but beautiful Keep it sim...

HTML+CSS to achieve text folding special effects example

This article mainly introduces the example of rea...

How to install Odoo12 development environment on Windows 10

Preface Since many friends say they don’t have Ma...

jQuery uses the canvas tag to draw the verification code

The <canvas> element is designed for client...

Tutorial on building file sharing service Samba under CentOS6.5

Samba Services: This content is for reference of ...

A brief discussion on JavaScript throttling and anti-shake

Table of contents Throttling and anti-shake conce...

MYSQL Operator Summary

Table of contents 1. Arithmetic operators 2. Comp...

Circular progress bar implemented with CSS

Achieve results Implementation Code html <div ...

MySQL spatial data storage and functions

Table of contents 1. Data Type 1. What is MySQL s...

MySQL 8.0.16 Win10 zip version installation and configuration graphic tutorial

This article shares with you the installation and...

Problems and solutions when installing MySQL8.0.13 on Win10 system

Operating system: Window10 MySQL version: 8.0.13-...

Native js to implement drop-down menu

Drop-down menus are also very common in real life...