At this point in time I am currently developing a game which consists of multiple characters. Each character will be ranked within the game based upon certain criteria contained within individual columns.
Example.
Col 1 - Col 2 - Col 3 - Col 4
Row 1: 10 10 10 10
Row 2: 50 50 50 50
Row 3: 20 20 20 20
When each value within the column is multiplied by a specific, pre determined value, and added together you get the current player total value.
I was wondering how I can get the players rank. Using the example above Row 2 would be ranked 1, Row 3 would be ranked 2, and Row 1 would be ranked 3rd. I know there has to be a way MySQL can do this for me but I am at a lost as to how.
Any information that can be provided would be most appreciated.
Abarak