Is there an example of how to do IN-DB Ranking?
Solved! Go to Solution.
Hi @Ikader ,
you could use the SQL function RANK to do IN-DB ranking. A SQL query would be similar to this (use the MS SQL Server WorldWideImporters sample database):
The Rank function returns the rank of a record, it's completely done on the database server and you only have to stream out the results.
If you explain in more detail, what you need, I can be more specific.
Best,
Roland
Thank you