EDUCBA

EDUCBA

MENUMENU
  • Blog
  • Free Courses
  • All Courses
  • All in One Bundle
  • Login
Home Data Science Data Science Tutorials SQL Tutorial SQL Ranking Function

SQL Ranking Function

Roja Metla
Article byRoja Metla
Priya Pedamkar
Reviewed byPriya Pedamkar

Updated May 15, 2023

SQL Ranking Function

Introduction to SQL Ranking Function

Rank function comes under the windows functions. It usually assigns a rank to each row within a partition set of a result set in SQL. If the partitioned rows have the same values then we receive the same rank for the matching records.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

we use the Rank function to get the latest value based on the partition condition.

RANK() OVER ( [PARTITION BY partition_expression, ... ]
ORDER BY sort_expression [ASC | DESC], ... )

Here in the above syntax, we can say that based on the partition by expression the row sets are divided for the result set of the partition by expression the function will be applied.

Order by is used to logically sort order of the rows in each partition either in ascending or descending order.

Syntax:

RANK() OVER ( [PARTITION BY partition_expression, ... ]
ORDER BY sort_expression [ASC | DESC], ... )

How ranking function work in SQL?

Let us create a table and apply the Rank function to see how it’s working:

create table test_rank_fun
(
Alphabet varchar(10)
);

Now let us insert few duplicated values as below and apply rank on it.

insert into test_rank_fun values ('A');
insert into test_rank_fun values ('A');
insert into test_rank_fun values ('A');
insert into test_rank_fun values ('R');
insert into test_rank_fun values ('R');
insert into test_rank_fun values ('S');
insert into test_rank_fun values ('S');
insert into test_rank_fun values ('F');
insert into test_rank_fun values ('M');

Now let us select the above table.

SELECT * FROM test_rank_fun;

Output:

SQL Ranking Function 1

Above is the output of the table test_rank_fun. Now let us apply the rank function on the “test_rank_fun“ table. Here no need of applying the partition by on “alphabet” column instead we apply order byon “alphabet” column ascending. Let us see what happens applying partition on the table and without applying partition by.

Applying the partition by:

SELECT Alphabet, RANK() OVER (PARTITION BY Alphabet ORDERBY Alphabet)as RANK
FROM test_rank_fun;

Output:

SQL Ranking Function 2

Here when we apply the partition by on the alphabet column all the alphabets are considered in the same partition result resulting into the same rank.

Now let us only apply the order by on the “alphabet” column. The alphabet of same are considered in same logical partition and given same value.

SELECT Alphabet, RANK() OVER (ORDER BY Alphabet)as RANK
FROM test_rank_fun;

Output:

SQL Ranking Function 3

Example

Now let us consider a real-time example and apply the rank function and check for the output: –

Let us create the table “test_rank_customer” with columns cust_id, cust_name, cust_address, cust_phone, cust_salary as below: –

create table test_rank_customer
(
Cust_id int,
cust_name varchar(20),
cust_address varchar(20),
cust_phone varchar(10),
cust_salary int,
dept_id int
);

Let us insert few rows in the above table as below and apply the rank function:

insert into test_rank_customer values (1,'Sam','USA','9879876785', 45000,1);
insert into test_rank_customer values (2,'Fred','UK','9872346785', 95000,1);
insert into test_rank_customer values (3,'Will','Germany','9679876785', 85000,2);
insert into test_rank_customer values (4,'Ben','London','8879876785', 45000,2);
insert into test_rank_customer values (5,'William','rome','7879876785', 95000,3);
insert into test_rank_customer values (6,'Bentley','Italy','7877876785', 95000,1);
insert into test_rank_customer values (7,'Suppu','USA','8979873485', 75000,1);
insert into test_rank_customer values (8,'Sian','USA','6579876785', 65000,4);
insert into test_rank_customer values (9,'Shames','London','0979876785', 43000,4);
insert into test_rank_customer values (10,'Harry','USA','9877876785', 56000,5);

Now let us see the rows in the table:

select * from test_rank_customer;

SQL Ranking Function 4

Now let us apply rank function in the table “test_rank_customer”.

select*,RANK() OVER (PARTITION BY dept_id order by cust_salary) AS RANK
from test_rank_customer;

Output 5

Here if we check the result set the partition is applied based on the “dept_id” column and order by is applied based on the “cust_salary”. So all the same values of “dept_id” will be partitioned together and the order is applied on top of it. Then at last the rank function is applied.

Now let us talk about the highlighted part in the result set. The highlighted part is of the “dept_id” = 1. Here we can see the order by done by “cust_salary”. If you observe the “95000” salary for Fred and Bentley are the same so the rank assigned won’t be different while the rest of the salary are unique and the rank is assigned accordingly.

In above the salary is the same for Fred and Bentley with 95000 rs. So, the rank assigned as 3. If we have a salary greater than 95000 let us say 100000 in the dept_id = 1 then the rank assigned for the salary is 5 and not 4. While in Dense_rank we assign rank as 4 and not 5.

we have inserted another row in the table as below to show the difference with the dense_rank and rank function:

insert into test_rank_customer values (11,'Rose','UK','9072346785', 100000, 1);
select*,RANK() OVER (PARTITION BY dept_id order by cust_salary) AS Dense_RANK, RANK() OVER (PARTITION BY dept_id order by cust_salary) AS RANK from test_rank_customer;

Output:

output

Conclusion

Rank function comes under the windows functions. It usually assigns a rank to each row within a partition set of a result set in SQL. If the partitioned rows have the same values, then we receive the same rank for the matching records and the consequent number will be neglected and next number is assigned as the next rank.

Need to know which columns need to be specified in the partition by column

Recommended Articles

We hope that this EDUCBA information on “SQL Ranking Function” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

  1. SQL NULLIF()
  2. SQL ROW_NUMBER
  3. SQL NTILE()
  4. SQL DENSE_RANK()
All in One Excel VBA Bundle
500+ Hours of HD Videos
15 Learning Paths
120+ Courses
Verifiable Certificate of Completion
Lifetime Access
Financial Analyst Masters Training Program
2000+ Hours of HD Videos
43 Learning Paths
550+ Courses
Verifiable Certificate of Completion
Lifetime Access
All in One Data Science Bundle
2000+ Hour of HD Videos
80 Learning Paths
400+ Courses
Verifiable Certificate of Completion
Lifetime Access
All in One Software Development Bundle
5000+ Hours of HD Videos
149 Learning Paths
1050+ Courses
Verifiable Certificate of Completion
Lifetime Access
Primary Sidebar
All in One Data Science Bundle2000+ Hour of HD Videos | 80 Learning Paths | 400+ Courses | Verifiable Certificate of Completion | Lifetime Access
Financial Analyst Masters Training Program2000+ Hours of HD Videos | 43 Learning Paths | 550+ Courses | Verifiable Certificate of Completion | Lifetime Access
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • 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.

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
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

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