विचार यह पूछना है, "कितने खिलाड़ी @this_user से ऊपर रैंक करते हैं":
select count(*) + 1 from
(
/* list of all users */
SELECT SUM( p.points ) AS sum_points
FROM user u
LEFT JOIN points p ON p.user_id = u.id
GROUP BY u.id
) x
/* just count the ones with higher sum_points */
where sum_points > (select sum(points) from points where user_id = @this_user)
संपादित 0-आधारित के बजाय परिणाम 1-आधारित बनाने के लिए