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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:45:34+00:00 2026-06-17T21:45:34+00:00

I am working with a table that contains logs for users reported exercise distances.

  • 0

I am working with a table that contains logs for users reported exercise distances. I want to rank users by the sum of their logged distance.

First I find all the User ID’s:

select distinct wordpress_user_id from wp_exercise_log

Then I loop through that and get the name and sum(distance) with:

    foreach($users as $user) {
// DISTANCE
    $user_distance = floor($wpdb->get_var( "select sum(distance) from wp_exercise_log where wordpress_user_id='$user'"));
// FULL NAME
  $user_info = get_userdata($user);
  $full_name = $user_info-> user_firstname . ' ' . $user_info-> user_lastname;
}

Heres my problem: Unless I append them to a multidimensional array and sort with PHP, I’m not sure how I can rank the users.

Is there a better way to select all this data and sort it with one SQL query?

  • 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-17T21:45:35+00:00Added an answer on June 17, 2026 at 9:45 pm
    select
       wordpress_user_id, 
       sum(distance) as user_distance 
    from 
       wp_exercise_log 
    group by 
       wordpress_user_id 
    order by 
       user_distance desc
    

    Please mind ORDER BY GROUP_FUNCTION() is always causing perfomance issues.

    You may consider to add some column user_total_distance to your users table and update it every change in wp_exercise_log.

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

Sidebar

Related Questions

I'm working on a project that contains 5 tables: This-->ThisThat<--That-->ThatFoo<--Foo I've defined the table
I'm working on a dynamic pivot query on a table that contains: OID -
I am working with a table that contains two versions of stored information. To
I want to make a simple table that contains a custom button in a
I’m presently working with a NHibernate application that contains table A that once had
I'm working with C# MVC3 and Entity Framework. I have a table that contains
I have a table, that contains employees. Since the company I'm working for is
Working on postgres SQL. I have a table with a column that contains values
Once again I need some help. I'm working with a table that contains 3
I'm working on a stored procedure. I have a table called #CashFlow that contains

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.