Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8370027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:48:36+00:00 2026-06-09T13:48:36+00:00

I have a leaderboard which has a score column. I also have an index

  • 0

I have a leaderboard which has a “score” column. I also have an index on the score column which allows me to order the table by score very quickly, even slicing out the top ten or any number of scores – even with 5 million rows!

However, what I would really like is to also display the players “rank” in the leaderboard. I have tried a few methods but none seem to stack up when dealing with anything over 100000 rows (they start taking over half a second, which is too long considering I’m expecting hundreds of cuncurrent users).

I’m currently using the following query to determin one users rank, then simlpy incrementing up for the users above this in my output – but it’s very slow.

SELECT  tro.score, tro.userId,  
(
    SELECT  count(*) 
    FROM    scoreboard tri
    WHERE   tri.score >= :score
) AS rank
FROM test_tracks tro
WHERE userId = :userID");

I am thinking of generating a ranking table to “cache” the users rank whenever they insert a new score into the scoreboard, but even generating this will take a LONG time (minutes, possibly hours).

Does anyone know of any good guides or tricks to establishing rankings? Preferably I’d like to be able to pageinate the results too, but even just establishing rank for the moment would be sufficient!

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T13:48:37+00:00Added an answer on June 9, 2026 at 1:48 pm

    The best way to do this is to use a table that is updated on a regular basis (once an hour, once a day etc) by a schedule that can take a longer query and run it. There isn’t any need to smash the database all the time with those sorts of heavy queries. It also means that the long-running query is run once a while, not with every user that browses through o that page.

    A perfect example is here on SO, where the weekly/monthly/yearly totals are updated once per day.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table called leaderboard which I create create temporary table leaderboard (
I have made a website for a 'walking challenge', which has a table that
I have made a leaderboard table on my site, which returns the users in
I have a query in which I am ordering a league table by a
I have three tables which I want to query in MySQ. As follows: **Table:
I have a very simple MySQL table with some very weird behavior. Incidentally the
I have problem to send my score data to the game center leaderboard on
I have a list box that I am using for a leaderboard to which
have written this little class, which generates a UUID every time an object of
Have a procedure which looks like Procedure TestProc(TVar1, TVar2 : variant); Begin TVar1 :=

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.