SELECT s1.Score, (SELECT COUNT(DISTINCT s.Score) FROM Scores s WHERE s.Score >= s1.Score) AS RankFROM Scores s1ORDER BY s1.Score DESC;