Skip to content
Advertisement

How do I make an incremental ranking per query system on SQL Server 2019?

Currently on SQL Server 2019, I have the following code:

that returns something like this this:

However, I want the QueryID (1st) column to be ordered incrementally (1, 2, 3, 4, 5, …) instead of the current form (1, 10, 100, 1000, 10000) and I want the rank (4th) column to have ranks like this:

Is there a property in SQL Server 2019 able to do this or does it need to envolve several functions?

Advertisement

Answer

The QueryId appears to be a string. You can convert that to an int. For the ranking, you want that per QueryId, so use PARTITION BY:

(This uses gt.* to focus on the columns you care about in the question. In general, though, use table aliases so queries are easier to write and read.)

If you want the QueryId actually replaced with an enumerated value, then use:

I’m not sure if you would want such an ordering based on the string or the number value of the string. For number sorting, you can use:

(This all assumes that int is big enough for the values. If not use NUMERIC/DECIMAL.)

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement