- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to display records having sum between a specific range using GROUP BY, HAVING and ORDER BY in a single MySQL query?
Let us first create a table −
mysql> create table DemoTable ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, CustomerName varchar(20), ProductPrice int ); Query OK, 0 rows affected (0.70 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable(CustomerName,ProductPrice) values('Chris',600); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable(CustomerName,ProductPrice) values('David',450); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable(CustomerName,ProductPrice) values('Chris',980); Query OK, 1 row affected (0.40 sec) mysql> insert into DemoTable(CustomerName,ProductPrice) values('Mike',1200); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable(CustomerName,ProductPrice) values('Chris',400); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable(CustomerName,ProductPrice) values('David',1200); Query OK, 1 row affected (0.20 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output −
+----+--------------+--------------+ | Id | CustomerName | ProductPrice | +----+--------------+--------------+ | 1 | Chris | 600 | | 2 | David | 450 | | 3 | Chris | 980 | | 4 | Mike | 1200 | | 5 | Chris | 400 | | 6 | David | 1200 | +----+--------------+--------------+ 6 rows in set (0.00 sec)
Following is the query to display a specific range of numbers −
mysql> select CustomerName,sum(ProductPrice) AS Total_Price from DemoTable group by CustomerName having sum(ProductPrice) between 1600 and 2000 order by CustomerName DESC;
This will produce the following output −
+--------------+-------------+ | CustomerName | Total_Price | +--------------+-------------+ | David | 1650 | | Chris | 1980 | +--------------+-------------+ 2 rows in set (0.00 sec)
- Related Articles
- Using GROUP BY and COUNT in a single MySQL query to group duplicate records and display corresponding max value
- How to ORDER BY FIELD with GROUP BY in a single MySQL query?
- Display the record with non-duplicate Id using MySQL GROUP BY and HAVING
- HAVING with GROUP BY in MySQL
- SQL query describing usage of SUM aggregate function and GROUP-BY with HAVING
- Order by a single field and display rest of the records in the same order with MySQL
- A single MySQL query to update only specific records in a range without updating the entire column
- MongoDB query to group records and display a specific value with dot notation
- Does MySQL eliminate common subexpressions between SELECT and HAVING/GROUP BY clause? How to test it?
- MySQL Order by a specific column x and display remaining values in ascending order
- How to ORDER BY DESC and display the first 3 records in MySQL?
- MySQL query to display records ordered by numeric difference?
- MySQL query to group by names and display the count in a new column
- Order by a function of two columns in a single MySQL query
- MySQL query to group by column and display the sum of similar values in another column

Advertisements