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 8129465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T08:19:10+00:00 2026-06-06T08:19:10+00:00

I have this Points table: =========================================== FIELD : TYPE =========================================== id int(11) user_id int(11)

  • 0

I have this Points table:

===========================================
FIELD           :      TYPE
===========================================
id                 int(11)
user_id            int(11)
value              int(11)
type               enum('add','subtract')
timestamp          int(11)
===========================================

Basically this table stores records of user points.

Now my question is: How do I get the top 10 users with the highest amount of total points?

Note: I have been told to change my schema — drop the ‘type’ field and put positive and negative values for the ‘value’ field. I just want to know if I could achieve the desired query using the current schema.

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-06T08:19:12+00:00Added an answer on June 6, 2026 at 8:19 am

    I would try something like this:

    SELECT
      user_id,
      SUM( IF(`type`='add',+1,-1) * `value`) AS user_points
    FROM Points
    GROUP BY user_id
    ORDER BY SUM( IF(`type`='add',+1,-1) * `value`) DESC
    LIMIT 10
    

    Seems to work: http://sqlfiddle.com/#!2/dd207/1

    Alternative, maybe faster, maybe not, the trick is moving out the SUM(IF()) part from the inner query:

    http://sqlfiddle.com/#!2/dd207/9

    SELECT
      user_id,
      SUM( IF(`type`='add',+1,-1) * `valuesum`)
    FROM (
          SELECT
            user_id,
            `type`,
            SUM(`value`) AS `valuesum`
          FROM     Points
          GROUP BY user_id, `type`
         ) AS p
    GROUP BY p.user_id
    ORDER BY SUM( IF(`type`='add',+1,-1) * `valuesum`) DESC
    LIMIT 10
    

    Probably both solution have to do a full table scan to summarize everything, so this situation might be a good candidate for some wise denormalization (collecting sums per users in another table, for example).

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

Sidebar

Related Questions

I have a table with a field of type bigint. This field store a
I have a long description field in a products table with a data type:
I have a table that has a field of type uniqueidentifier which is going
I have this method for rotating points in 3D using quaternions, but it seems
I have this sheet on Excel : Team Total Points Position AJPPR 371,1878896 APP64
I have this block of code inside a loop: var points = [new google.maps.LatLng(lat1,
I have got this text file with latitude and longitude values of different points
I have data on 25 points like this: Z= 0.6840 0.7208 1.0240 1.0293 0.7713
I have drawn something like this: How to remove the paths and points?
We have a service reference that points at a WCF service, this acts as

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.