I have the following data in a table:
name wins diff pct pts
admin14 10 0 41 77
admin11 10 1 42 777
admin12 10 24 41 4443
administrator 10 24 62 50
I have the following view (check out the sorting).
Select * from tbltest order by wins desc, diff, pct desc, pts desc
The diff column needs ascending sort because lower is better for that sort all other need desc sort because higher is better.
I need to rank these with a numeric number based on the way they are sorted: 1 2 3 4
If they tie, I need to duplicate the rank. 1, 2, 2, 4 etc…
if there were only two columns the ranking would look like this:
name wins diff rank
admin14 10 0 1
admin11 10 1 2
admin12 10 24 3
administrator 10 24 3
I do not know how to write the ranking code in sql off this view. I also do not know how to figure the rank for all the columns. Can you provide some feed back on what i am trying to do.
name wins diff pct pts
admin14 10 0 41 77
admin11 10 1 42 777
admin12 10 24 41 4443
administrator 10 24 62 50
I have the following view (check out the sorting).
Select * from tbltest order by wins desc, diff, pct desc, pts desc
The diff column needs ascending sort because lower is better for that sort all other need desc sort because higher is better.
I need to rank these with a numeric number based on the way they are sorted: 1 2 3 4
If they tie, I need to duplicate the rank. 1, 2, 2, 4 etc…
if there were only two columns the ranking would look like this:
name wins diff rank
admin14 10 0 1
admin11 10 1 2
admin12 10 24 3
administrator 10 24 3
I do not know how to write the ranking code in sql off this view. I also do not know how to figure the rank for all the columns. Can you provide some feed back on what i am trying to do.