Briefly explain the use of group by in sql statements

Briefly explain the use of group by in sql statements

1. Overview

Group by means to group data according to the rules after by. The so-called grouping means dividing the data set into several "small groups" and processing them accordingly.

2. Grammatical rules

SELECT column_name, aggregate_function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name

3. Examples

We have an order table like this:

We want to count the total amount of each user's order, we can use group by to achieve this:

select Customer,sum(OrderPrice) as total_price group by Customer;

The following result set appears:
Bush 2000
Carter 1700
Adams 2000
In fact, the data is first grouped by Customer, then the sum of orderPrice of each group is calculated, and finally each group is displayed as a row.
If you remove the group by statement, the following results will appear:

It is about adding up all the prices to get the final total, which is different from our expectations.

4. Note

If the following appears:

select category, sum(quantity) as sum of quantity, summaryfrom Agroup by categoryorder by categorydesc

An error will be reported because the selected field must either be included after group by as the basis for grouping, or be included in an aggregate function, otherwise the summary column cannot match a row.
Therefore, the following can be used:

select category, sum(quantity) AS sum of quantities from Agroup by category order by sum(quantity) desc

If you want to group by multiple columns, you can use the group by all syntax:

select Customer,OrderDate,sum(OrderPrice) group by all Customer,OrderDate

5. The difference between where and having

where is to remove rows that do not meet the where condition before query grouping, that is, filter data before grouping. The where condition cannot contain aggregate functions.
Having is to filter the groups that meet the conditions, that is, to filter the data after grouping. The having statement often contains aggregate functions, and having is used to filter out specific groups.
Example:

select Customer,sum(OrderPrice) as total_price group by Customer having total_price>1700;

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • This article will show you how to use group by in the database
  • MySQL group by method for single word grouping sequence and multi-field grouping
  • Tutorial on how to use group by in pymongo

<<:  Restart the Docker service to apply the automatic start and stop command (recommended)

>>:  Teach you how to use vscode to build a react-native development environment

Recommend

Methods and steps to build nginx file server based on docker

1. Create a new configuration file docker_nginx.c...

Detailed installation tutorial for MySQL zip archive version (5.7.19)

1. Download the zip archive version from the offi...

How to quickly clean up billions of data in MySQL database

Today I received a disk alarm exception. The 50G ...

CSS injection knowledge summary

Modern browsers no longer allow JavaScript to be ...

Summary of the dockerfile-maven-plugin usage guide

Table of contents pom configuration Setting.xml c...

How to mark the source and origin of CSS3 citations

I am almost going moldy staying at home due to th...

Brief analysis of the introduction and basic usage of Promise

Promise is a new solution for asynchronous progra...

Implementation of positioning CSS child elements relative to parent elements

Solution Add position:relative to the parent elem...

Web Design Tutorial (8): Web Page Hierarchy and Space Design

<br />Previous article: Web Design Tutorial ...

Analysis of several situations where MySQL index fails

1. Best left prefix principle - If multiple colum...

How to remotely connect to MySQL database with Navicat Premium

The party that creates a new connection is equiva...

HTML+CSS3 code to realize the animation effect of the solar system planets

Make an animation of the eight planets in the sol...

Detailed explanation of how to implement secondary cache with MySQL and Redis

Redis Introduction Redis is completely open sourc...

Graphic tutorial on configuring log server in Linux

Preface This article mainly introduces the releva...

jQuery plugin to implement accordion secondary menu

This article uses a jQuery plug-in to create an a...