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

  • SEARCH
  • Home
  • 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 6223113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:25:52+00:00 2026-05-24T08:25:52+00:00

I have a table that holds usernames and results. When a user insert his

  • 0

I have a table that holds usernames and results.
When a user insert his results to the DB, I want to execute a query that will return
the top X results ( with their rank in the db) and will also get that user result
and his rank in the DB.
the result should be like this:

1 playername 4500

2 otherplayer 4100

3 anotherone 3900
…

134 current player 140

I have tried a query with union, but then I didnt get the current player rank.
ideas anyone?

The DB is MYSQL.

10x alot and have agreat weekend 🙂

EDIT

This is what I have tried:

(select substr(first_name,1,10) as first_name, result
FROM top_scores ts
WHERE result_date >= NOW() – INTERVAL 1 DAY
LIMIT 10)
union
(select substr(first_name,1,10) as first_name, result
FROM top_scores ts
where first_name=’XXX’ and result=3030);

  • 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-05-24T08:25:53+00:00Added an answer on May 24, 2026 at 8:25 am
    SET X = 0;
    
    SELECT @X:=@X+1 AS rank, username, result
    FROM myTable
    ORDER BY result DESC
    LIMIT 10;
    

    Re your comment:

    How about this:

    SET X = 0;
    
    SELECT ranked.* 
    FROM (
        SELECT @X:=@X+1 AS rank, username, result
        FROM myTable
        ORDER BY result DESC
    ) AS ranked
    WHERE ranked.rank <= 10 OR username = 'current';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table that I insert data with following query (from c# code): INSERT
I have a table that holds stats for a game, this table will have
I have a table that holds information about cities in a game, you can
I have a table that holds only two columns - a ListID and PersonID.
Given that I have a table that holds vehicle information and one of those
I have a MySQL table that holds many entries with repeated IDs (for various
I have a table (table variable in-fact) that holds several thousand (50k approx) rows
Lets suppose that I have a Category table with a column that holds the
simple question regarding HQL(Hibernate query language) so i have user class , that can
I have a table that holds data received from a thirdparty via an api

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.