Robert Cain continues a series on KQL:
The Kusto Windowing Function
row_rank_dense
is an interesting function. It lets you get a unique count of a specific column in a dataset. Unlike other methods of getting counts,row_rank_dense
allows you to see each individual row of data.First though, if you’ve not read the introductory post on Windowing Functions, Fun With KQL Windowing Functions – Serialize and Row_Number, you should do so now as it introduced several important concepts needed to understand how these Windowing Functions work.
Read on to see how this window function works.