These are the special sorting functions that we can use to sort the data that we select from the tables at run time.
- ROW_NUMBER
- RANK
- DENSE_RANK
- NTILE
First, create a table as follows and add a few records into it with the following script.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | CREATE TABLE [dbo].[MemberJobs]( [MemberID] [int] NULL, [Job] [varchar](50) NULL, [City] [varchar](50) NULL, [MemberName] [varchar](50) NULL ) ON [PRIMARY] GO INSERT INTO [dbo].[MemberJobs] ([MemberID],[Job],[City],[MemberName]) VALUES (3,'Engineer','İstanbul','Ali'), (4,'Doctor','Ankara','Veli'), (5,'Engineer','Adana','Ahmet'), (6,'Doctor','Adana','Mehmet'), (7,'Trainer','İstanbul','Ayşe'), (8,'Doctor','İstanbul','Ali'), (9,'Doctor','İstanbul','Veli'), (10,'Engineer','Adana','Ali') GO SELECT * FROM [dbo].[MemberJobs] |
ROW_NUMBER
This function sequentialy numbers each row starting from 1 according to the sort expression.
1 | ROW_NUMBER() OVER ([ ] ) |
Number the output by sorting the City and MemberId columns.
1 2 3 | SELECT ROW_NUMBER() OVER(ORDER BY City) City_Order, * FROM [dbo].[MemberJobs] ORDER BY City, MemberId |
We can sort the different data in a column separately. Let’s sort the cities depending on the Job column according to the values in the example.
1 2 3 | SELECT ROW_NUMBER() OVER(ORDER BY City) City_Order, ROW_NUMBER() OVER(PARTITION BY Job ORDER BY City) as City_Order_Depending_Jobs, * FROM [dbo].[MemberJobs] ORDER BY City, MemberID |
RANK and DENSE_RANK Functions:
The RANK () and DENSE_RANK () functions group data according to a column and sort the groups by assigning a number to each group.
The difference between RANK and DENSE_RANK functions:
In the RANK () function; While the value of the first group is 1, and the value of the second group is not always 2. If there are 3 values in the first group, the value of the second group is 4. In the DENSE_RANK () function, the group numbers are consecutive. No matter how many records in the first group, the value of the second group is always 2. In the following example, this topic is very clear.
1 2 3 | SELECT RANK() OVER(ORDER BY City) RANK, DENSE_RANK() OVER(ORDER BY City) as DENSE_RANK, * FROM [dbo].[MemberJobs] ORDER BY City, MemberID |
NTILE Function:
NTILE () will sort the dataset according to the columns specified by OVER and ORDER BY. And groups the records by the number specified in the parameter, and gives each group a sequential number.
The integer_expression parameter is a positive integer indicating the number of groups. Suppose that 30 records are returned as a result of the query and the parameter value specified in the NTILE () function is 5. In this case, 5 groups of 6 rows are created. And each group is given sequential numbers, starting from 1. That is, the number of the first 6 records is set to 1, the number of the next 6 records is 2, and the number of the last 6 records is set to 5.
There are 8 records in our example, let’s try NTILE with different values.
1 2 3 4 5 6 | SELECT NTILE(2) OVER(ORDER BY City) [NTILE2], NTILE(3) OVER(ORDER BY City) [NTILE3], NTILE(4) OVER(ORDER BY City) [NTILE4], NTILE(5) OVER(ORDER BY City) [NTILE5], * FROM [dbo].[MemberJobs] ORDER BY City |