DENSE_RANK()
Rank of rows in a partition without gaps
BIGINT
DENSE_RANK () OVER <window_name_or_spec>
Rows with the same window_order values get the same rank within the partition window_partition, if specified.The dense rank of a row is equal to the number of different rank values in the partition preceding the current row, plus one.