EDUCBA

EDUCBA

MENUMENU
  • Blog
  • Free Courses
  • All Courses
  • All in One Bundle
  • Login
Home Data Science Data Science Tutorials SQL Tutorial SQL Min and Max

SQL Min and Max

SQL Min and Max

Introduction to SQL Min and Max

SQL min and max functions are used to find the smallest and largest value from the specified table column. The SQL min function returns the smallest value from the specified column. At the same time, the max function returns the most significant value from the specified column. It is an aggregation function used in all the RDBMS database systems to find the smallest and largest values from table columns.

What are SQL Min and Max?

SQL min and max aggregation functions will work on the numerical data. The SQL min and max function takes the single argument as input, an expression, or a column. After taking a single input, both functions return a single value as output.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

SQL Min

The SQL min function returns a single value as output as we defined. This function will return the smallest values from a set of elements. SQL min function is straightforward to use. It will be recording the minimum number from the record set. The SQL min function is essential and helpful in finding the smallest number from the table column.

Below is the syntax SQL min function:

Select MIN (name_of_column) from table_name;
Select MIN (name_of_column) from table_name where condition;
MIN (name_of_column or expression)
Select MIN (name_of_column) from table_name group by name_of_column;

SQL Max

As we defined SQL max function is returning a single value as output. This function will return the most significant values from a set of elements. SQL max function is straightforward to use. It will be recording the maximum number from the record set. The SQL max function is essential and helpful in finding the most significant number from the table column.

Below is the syntax SQL max function:

Select MAX (name_of_column) from table_name;
Select MAX (name_of_column) from table_name where condition;
Select MAX (name_of_column) from table_name group by name_of_column;
MAX (name_of_column or expression)

Parameter description

  • Select: We can select the column name from the table to find the min and max values from the table column. This is the SQL statement that selects the specified data from a table.
  • Name of the table: This is nothing but the table name from which we have retrieved the column smallest and largest values. When retrieving the smallest or largest values using it, we need to define the table name.
  • Where condition: This is the most critical parameter executing the SQL min and max function. The where condition in sql min and max function will be used to retrieve specified most minor and most significant, which we have defined in the where condition. Where condition is beneficial to retrieve specific condition smallest and largest values using sql min and max functions.
  • Name of the column: This is the table column used with functions. If suppose we have used sql min and max function with the specified column, it will be retrieving the smallest and largest values from the specified column.
  • Min: This function finds the smallest values from the column or expression we used in our query.
  • Max: This function is used to find the most significant values from the column or expression we used in our query.

SQL Min and Max Functions

We can also use group by statement with SQL min and max function and the order by condition with min and max functions.

The below example shows that sql min function is not case sensitive. In the first example, we have used the function name in an uppercase letter. In contrast, in the second example, we have used the function name in lowercase letters both times, and it will return the same result without issuing any error. So we can say that sql min function is not case sensitive.

Code:

SELECT MIN (id) from min_max;
SELECT min (id) from min_max;

Output:

SQL Min and Max 1

SQL Min and Max 2JPG

The below example shows that sql max function is not case sensitive. In the first example, we have used the function name in an uppercase letter. In contrast, in the second example, we have used the function name in lowercase letters both times, which will return the same result without issuing any error. So we can say that sql max function is not case sensitive.

Code:

SELECT MAX (id) from min_max;
SELECT max (id) from min_max;

Output:

SQL Min and Max 3JPG

SQL Min and Max 4JPG

The function is not working on text types of columns. We need only the numeric type of column to find the smallest and largest values.

Code:

Select min (text) from min_max;
Select max (text) from min_max;

Output:

SQL Min and Max 5

SQL Min and Max 6

Examples of SQL Min and Max

Different examples are mentioned below:

Example #1

In the below example, we are using the min_max table to show the instance of SQL min, and the max function below is records of the min_max table.

Code:

Select * from min_max;

Output:

min_max table

The example below finds the most significant and minor number of records from stud_marks tables. We use the min function in the first query, and in the second query, we use the max function.

Code:

Select min (stud_marks) from min_max;
Select max (stud_marks) from min_max;

Output:

we are finding largest and smallest number of records

SQL Min and Max 10

Example #2

In the below example, we are using a single column with min and max functions and the where condition.

Code:

Select min (stud_marks) from min_max where id = 10;
Select max (stud_marks) from min_max where id = 20;

Output:

using single column

SQL Min and Max 12

Example #3

In the below example, we are using two columns in the query and the stud_marks column in the min and max function to find the smallest and largest number.

Code:

Select id, min (stud_marks) from min_max group by id;
Select id, max (stud_marks) from min_max group by id;

Output:

we are using two column in query

SQL Min and Max 14

Example #4

In the below example, we use min and max functions in a single query as follows.

Code:

Select min (id), max (stud_marks) from min_max;

Output:

in single query

Conclusion

A function is straightforward to use. It will be recording the minimum and maximum number from the record set. The function finds the smallest and largest value from the column. For example, the SQL min function returns the smallest value from the specified column.

Recommended Articles

This is a guide to SQL Min and Max. Here we discuss the introduction, SQL min, and max functions and examples. You may also have a look at the following articles to learn more –

  1. SQL ORDER BY DESC
  2. SQL EXECUTE
  3. SQL EXCLUDE
  4. MySQL InnoDB Cluster
ANSIBLE Training
14+ Hour of HD Videos
4 Courses
Verifiable Certificate of Completion
Lifetime Access
4.5
LIGHTWORKS - Learn Video Editing Techniques
26+ Hours of HD Videos
2 Courses
Verifiable Certificate of Completion
Lifetime Access
4.5
AUDACITY - Audio Recording & Editing
12+ Hours of HD Videos
1 Courses
1 Mock Tests & Quizzes
Verifiable Certificate of Completion
Lifetime Access
4.5
UNITY Game Development Training [2D+3D]
141+ Hours of HD Videos
26 Courses
5 Mock Tests & Quizzes
Verifiable Certificate of Completion
Lifetime Access
4.5
Primary Sidebar
Popular Course in this category
3DS MAX - Architecture Training
 15+ Hours of HD Videos
4 Courses
3 Mock Tests & Quizzes
  Verifiable Certificate of Completion
  Lifetime Access
4.5
Price

View Course
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

ISO 10004:2018 & ISO 9001:2015 Certified

© 2023 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more