SQL GROUP BY detailed explanation and simple example

SQL GROUP BY detailed explanation and simple example

The GROUP BY statement is used in conjunction with the Aggregate function to group the result set based on one or more columns.

SQL GROUP BY Syntax

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

Demo Database

In this tutorial, we will use the well-known Northwind sample database.

Here is the data selected from the "Orders" table:

OrderID CustomerID EmployeeID OrderDate ShipperID
10248 90 5 1996-07-04 3
10249 81 6 1996-07-05 1
10250 34 4 1996-07-08 2

Data from the "Shippers" table:

ShipperID ShipperName Phone
1 Speedy Express (503) 555-9831
2 United Package (503) 555-3199
3 Federal Shipping (503) 555-9931

Data selected from the "Employees" table:

EmployeeID LastName FirstName BirthDate Photo Notes
1 Davolio Nancy 1968-12-08 EmpID1.pic Education includes a BA....
2 Fuller Andrew 1952-02-19 EmpID2.pic Andrew received his BTS....
3 Leverling Janet 1963-08-30 EmpID3.pic Janet has a BS degree....

SQL GROUP BY Example

Now we want to find the number of orders delivered by each delivery person.

The following SQL statement classifies and counts orders by delivery person:

SELECT Shippers.ShipperName,COUNT(Orders.OrderID) AS NumberOfOrders FROM Orders
LEFT JOIN Shippers
ON Orders.ShipperID=Shippers.ShipperID
GROUP BY ShipperName;

GROUP BY more than one column

We can also apply GROUP BY clause to more than one column as shown below:

SELECT Shippers.ShipperName, Employees.LastName,
COUNT(Orders.OrderID) AS NumberOfOrders
FROM ((Orders
INNER JOIN Shippers
ON Orders.ShipperID = Shippers.ShipperID)
INNER JOIN Employees
ON Orders.EmployeeID = Employees.EmployeeID)
GROUP BY ShipperName,LastName;

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Mysql uses group by group sorting
  • Solution to MySQL 5.7 group by new feature error 1055
  • The difference between order by and group by in sql
  • mysql group by having example code
  • Detailed explanation of MYSQL GROUP BY usage
  • Incorrect use of SQL statement Groupby in Mysql
  • How to use GROUP BY in MySQL to get the first N records
  • MySQL optimizes GROUP BY (loose index scan vs compact index scan)
  • Detailed explanation of the implementation principle of MySQL group query Group By

<<:  A practical record of handling the ddgs and qW3xT.2 mining viruses implanted in Linux servers

>>:  Vue implements a simple calculator

Recommend

js returns to the previous page and refreshes the code

1. Javascript returns to the previous page history...

Linux CentOS6.5 yum install mysql5.6

This article shares the simple process of install...

How to use docker to deploy spring boot and connect to skywalking

Table of contents 1. Overview 1. Introduction to ...

Detailed explanation of Vue project optimization and packaging

Table of contents Preface 1. Routing lazy loading...

Font Treasure House 50 exquisite free English font resources Part 1

Designers have their own font library, which allo...

How to restore data using binlog in mysql5.7

Step 1: Ensure that MySQL has binlog enabled show...

Example code for hiding element scrollbars using CSS

How can I hide the scrollbars while still being a...

Install three or more tomcats under Linux system (detailed steps)

If you want to install multiple tomcats, you must...

Detailed explanation of the solution to the nginx panic problem

Regarding the nginx panic problem, we first need ...

How to use JSX in Vue

What is JSX JSX is a syntax extension of Javascri...

Detailed explanation of MySQL index principles and optimization

Preface This article was written by a big shot fr...

Tutorial on installing MySQL 5.7.18 using RPM package

system: CentOS 7 RPM packages: mysql-community-cl...

MySql 5.6.35 winx64 installation detailed tutorial

Note: There was no error in the project startup d...