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:
Data from the "Shippers" table:
Data selected from the "Employees" table:
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:
|
<<: A practical record of handling the ddgs and qW3xT.2 mining viruses implanted in Linux servers
>>: Vue implements a simple calculator
1. Javascript returns to the previous page history...
Table of contents 2. Detailed explanation 2.1. Ad...
This article shares the simple process of install...
Table of contents 1. Overview 1. Introduction to ...
Table of contents Preface 1. Routing lazy loading...
Designers have their own font library, which allo...
Step 1: Ensure that MySQL has binlog enabled show...
How can I hide the scrollbars while still being a...
If you want to install multiple tomcats, you must...
Regarding the nginx panic problem, we first need ...
What is JSX JSX is a syntax extension of Javascri...
There are many read-write separation architecture...
Preface This article was written by a big shot fr...
system: CentOS 7 RPM packages: mysql-community-cl...
Note: There was no error in the project startup d...