Concept Flow - RANK and DENSE_RANK difference
Start with ordered data
Apply RANK function
Assign ranks with gaps for ties
Apply DENSE_RANK function
Assign ranks without gaps for ties
Compare results
End
We start with ordered data, apply RANK which assigns ranks with gaps for ties, then apply DENSE_RANK which assigns ranks without gaps, and finally compare the two results.