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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:24:07+00:00 2026-06-13T22:24:07+00:00

I need to access several tables, actually they are the same table but older

  • 0

I need to access several tables, actually they are the same table but older versions, and get the max of subtracted score from both tables for each manager.

let’s say we tables r6 and r10 that have a field called scores.

I need to get the scores from the two tables and subtract the new score (from latest table) form the old one (in an older table) to get the managers score for between period.

let’s say table r6 has score = 1 for manager A, and table r10 has score = 5 for manager A. So for manager A the yield score is 5-1 = 4. Which is basically (r10.scores – r6.scores) which will be totalScore.

Now i need to get that totalScore (the score from 10-6) for all managers A-Z and also be able to find the highest one as well.

The question is, how to achieve that in mysql, if not possible, what do u suggest? I am using php btw.

Addition info:

Table’s Names:

1- ranking_gw6_260912 AS r6
2- ranking_gw10_201012 AS r10 

Used Fields:

1- rx.manager_id
2- rx.scores

These fields exist in both tables.

n.b gw refers to game weeks of football matches, The website is for fantasy football and I am trying to get the winner of the contest who has the highest score from game week 6 to game week 10. Sadly, the database only stores the latest score overriding the on for the previous week. so I cannot get each week score and thus I am left with the overall score. Yet, we have a backup tables for each week that I will be using to get the between score.

  • 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-13T22:24:08+00:00Added an answer on June 13, 2026 at 10:24 pm

    since fields exists on both tables, use INNER JOIN

    SELECT  r6.manager_ID, (r6.scores - r10.scores) totalScore
    FROM    Table1 AS r6
            INNER JOIN  Table2 AS r10 
                ON r6.manager_ID = r10.manager_ID
    WHERE   (r6.scores - r10.scores) = 
            (
                SELECT MAX(totalScore)
                FROM
                (
                    SELECT  (r6.scores - r10.scores) totalScore
                    FROM    Table1 AS r6
                            INNER JOIN  Table2 AS r10 
                                ON r6.manager_ID = r10.manager_ID
                ) cc
            );
    
    • SQL Fiddle Demo (two queries included)
    • SQL Fiddle Demo (with tie score)

    or

    SELECT  r6.manager_ID, (r6.scores - r10.scores) totalScoreByHighest
    FROM    Table1 AS r6
            INNER JOIN  Table2 AS r10 
                ON r6.manager_ID = r10.manager_ID
    ORDER BY totalScoreByHighest DESC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to access the value of a bound item several times in a
I know that's bad design, but I need access to the view from my
I'm using Castle ActiveRecord in a warehouse project. I have several tables that get
I've several databases that contains the exact same base tables with identical design. Now
I need to retrieve change-data-capture rows for several tables, and I'm required (by company
I need access to the uint64_t typedef from stdint.h in some wrapper code that
I have two different modules that need access to a single file (One will
I've got an app running maximized in a borderless window and need access to
I am working on a theme for Opencart and am finding I need access
I need to access a components tag attribute like: <h:inputtext id=input_age/> from a backing

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.