Understanding Dense Rank
What is DENSE_RANK? DENSE RANK is a window function in SQL that is used to assign a rank to each row within a result set. The rank assigned to each row is based on the values in one or more columns specified in the ORDER BY clause. The DENSE RANK function is similar to the …