Last active
September 22, 2017 23:12
-
-
Save vielhuber/5791de49d8cd107e4a08 to your computer and use it in GitHub Desktop.
create ranking with equal positions #sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE | |
user(id INT, score INT); | |
INSERT INTO | |
user(id, score) | |
VALUES | |
(1, 10), (2, 40), (3, 55), (4, 10), (5, 5), (6, 20), (7, 30), (8, 70), (9, 30); | |
SET @score_prev = NULL; | |
SET @cur_rank = 0; | |
SELECT id, score, CASE | |
WHEN @score_prev = score THEN @cur_rank | |
WHEN @score_prev := score THEN @cur_rank := @cur_rank + 1 | |
END AS rank | |
FROM user | |
ORDER BY score DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment