The MySQL MIN() function is used to get the smallest value in a number set. Suppose you have a table with a list of different products and their corresponding prices; you would want to know which one has the lowest price. Here, the MIN() function will return that answer to you in the easiest possible way without searching through all the prices.
This will also help in returning the minimum value in any column, be it prices, ages, scores, or any other numerical data. It eases your work and helps you to produce accurate results within the shortest time.
MySQL MIN() Function
The MySQL MIN() function is used to find the smallest value in a specified column within a table. It's helpful for quickly identifying the minimum numerical, date, or other data type values without manually searching through all the entries.
Syntax of MySQL MIN() Function
SELECT MIN(column_name)
FROM table_name
WHERE condition;
where,
- column_name: The column from which you want to retrieve the least value.
- table_name: str The name of the table containing column.
- condition: This is an optional part. You can put conditions here to filter rows before finding the minimum value.
Examples of MySQL MIN() Function
Create a Table
CREATE TABLE sales (
sale_id INT AUTO_INCREMENT PRIMARY KEY,
product_id INT,
customer_id INT,
amount DECIMAL(10, 2),
sale_date DATE
);
Insert Data into the Table
INSERT INTO sales (product_id, customer_id, amount, sale_date)
VALUES
(101, 201, 300.00, '2024-01-15'),
(102, 202, 150.00, '2024-01-20'),
(101, 203, 200.00, '2024-02-10'),
(103, 204, 450.00, '2024-02-15'),
(102, 205, 100.00, '2024-03-05');
Output:
sale_id | product_id | customer_id | amount | sale_date |
---|
1 | 101 | 201 | 300.00 | 2024-01-15 |
2 | 102 | 202 | 150.00 | 2024-01-20 |
3 | 101 | 203 | 200.00 | 2024-02-10 |
4 | 103 | 204 | 450.00 | 2024-02-15 |
5 | 102 | 205 | 100.00 | 2024-03-05 |
Use the MIN() Function
SELECT MIN(product_id) FROM sales;
Output:
Using MIN() with Conditions
You can also use the MIN() function along with the WHERE clause to filter the records. For example, if you want to get the minimum amount for sales greater than 150, you can use:
Example: Query to Find Minimum Sale Amount Greater Than 150
Now we will be understanding the MIN() function with conditions in MySQL with an example
SELECT MIN(amount) AS minimum_amount
FROM sales
WHERE amount > 150;
Output:
Explanation: In this example, the query returns the smallest sale amount that is greater than 150. The condition 'WHERE amount > 150
'
filters the records, and the 'MIN(amount)
'
function finds the smallest amount among the filtered records.
Using MIN() with GROUP BY
The next example will be using the MIN() function with the GROUP BY clause. We will start by creating a sales table, then insert data into the table which is already stored in the database, and finally run the query returning the minimum amount sold of each product.
Example: Query to Find Minimum Sale Amount for Each Product
Now we will be understanding the MIN() GROUP BY function in MySQL with an example:
SELECT product_id, MIN(amount) AS minimum_amount
FROM sales
GROUP BY product_id;
Output:
product_id | minimum_amount |
---|
101 | 200.00 |
102 | 100.00 |
103 | 450.00 |
Explanation: This query groups the sales records by 'product_id
'
and then applies the MIN() function to find the smallest sale amount for each product.
Conclusion
The MySQL MIN() function is an excellent tool for returning users with the smallest value in any column. It can help you find minimum values for numerical, date, or any other data type very quickly and efficiently. Just learn the syntax and different use cases, and you are good to go in efficiently applying the MIN() function into your SQL queries for valuable insights.
Similar Reads
SQL MIN() Function The MIN() function in SQL is a powerful tool that allows us to determine the smallest or lowest value from a specified column or expression. It is widely used in data analysis to extract minimum values for decision-making, reporting, and business insights. This function automatically excludes NULL v
8 min read
MySQL MAX() Function In database management, efficient data retrieval is important for making informed decisions. The MySQL MAX() function stands as a useful function for extracting the highest value from a set of records, offering significant benefits for data analysis and reporting. Whether you're identifying peak sal
3 min read
PL/SQL MIN() Function PL/SQL means Procedural Language / relational Structured Query Language, the extended language of Oracle. It is primarily used to manage and manipulate databases. One of the most frequently utilized SQL functions is the MIN() function. This powerful aggregate function is essential for finding the sm
6 min read
SQRT() Function in MySQL The SQRT() function in MySQL calculates the square root of a non-negative number, returning NULL for negative inputs. It is a built-in function that provides high precision and is optimized for performance and making it ideal for mathematical and scientific applications.In the article, we will cover
3 min read
LEAST() Function in MySQL The LEAST() function in MySQL is a versatile tool that returns the smallest (minimum) value from a list of expressions. It can be used with numbers, strings, or even columns of data to find the minimum value according to their data type.In this article, We will learn about LEAST() Function in MySQL
4 min read