I need some help dealing with ties when ranking in MySQL. For example:
PLAYER | POINTS
Assuming name is unique
SELECT t1.name, (SELECT COUNT(*) FROM table_1 t2 WHERE t2.score > t1.score) +1 AS rnk FROM table_1 t1