Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active September 22, 2017 23:12
Show Gist options
  • Save vielhuber/5791de49d8cd107e4a08 to your computer and use it in GitHub Desktop.
Save vielhuber/5791de49d8cd107e4a08 to your computer and use it in GitHub Desktop.
create ranking with equal positions #sql
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