Yogesh Chauhan's Blog

SQL GROUP BY Statement

in SQL/MySQL on September 4, 2019

SQL GROUP BY Statement

As per the name SQL GROUP BY Statement groups all the rows with same values. For example, people in each country, students in each class etc.

There are 5 most used aggregate functions in SQL: AVG,COUNT, MIN, MAX, SUM. This GROUP BY keyword often used with those aggregate functions to group the result set. Let’s take a look at the syntax:


SELECT column(s)
FROM table WHERE condition
GROUP BY column(s)
ORDER BY column(s);

It’s like any other syntax where you select the columns from table and add a condition to it. In this query we need to add GROUP BY keyword to combine those rows and give us one result set.

Let’s take a look at the example.


SELECT COUNT(CustomerID), Country
FROM customers
GROUP BY Country;

In the example query above, we are counting customers in each country from the table customers. If we remove the keyword, GROUP BY then the query will give us the total number of customers with the name of first country in the table. You can see the results in the DEMO. I’ve included it for comparison purpose only. 

We can use the GROUP BY keyword with 2 or more tables with JOIN keyword as well. Let’s take a look at that kind of example. 


SELECT merchants.MerchantName,COUNT(orders.OrderID) AS NumberOfOrders FROM orders
LEFT JOIN merchants ON orders.MerchantID = merchants.MerchantID
GROUP BY MerchantName;

In the query above, we are selecting merchant names from table merchants and then counting orders from the table order applying LEFT JOIN ot both the tables. So the query above counts orders per merchants because of the keyword GROUP BY.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
A quick introduction to API, REST API and PostmanMiscellaneous10 Usability Blunders to AvoidUI/UXHow to replace HTML lists using CSS Counters?CSSRelative Length Units in CSSCSSSome SQL LIKE Operators We Need to Keep in MindSQL/MySQLDISTINCT ON: The confusing, unique and useful feature in PostgresPostgres