here you can find the functions.
With the table wf_example created in previous example, run:
select i
  , dense_rank() over (order by i)
  , row_number() over ()
  , rank() over (order by i)
from wf_example
The result is:
 i | dense_rank | row_number | rank
---+------------+------------+-...