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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T16:01:42+00:00 2026-05-15T16:01:42+00:00

I am trying to create a query that allows me to get the sum

  • 0

I am trying to create a query that allows me to get the sum of a total stored in one table based on values in another table.

Specifically, I have one table called ‘winning_bids’, that I want to join with another table, called ‘objects’. ‘winning_bids’ contains a User ID, and an Object ID (primary key of ‘objects’ table). The ‘objects’ table contains an Object ID, and the value of the object. I want to sum the value from the ‘objects’ table for each user, grouped by the User ID from the ‘winning_bids’ table.

I tried something like this, but it does not work:

SELECT SUM(o.value) AS total, w.uid
  FROM winning_bids w 
  LEFT JOIN objects o ON (o.id = w.oid)
 GROUP BY w.uid

This statement merely returns all of the User IDs, but with the total for only the first User ID in each row.

Any help would be appreciated, thanks.

  • 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-15T16:01:43+00:00Added an answer on May 15, 2026 at 4:01 pm

    It works fine for me.

    Here is what I did to test your query:

    CREATE TABLE winning_bids (uid INT NOT NULL, oid INT NOT NULL);
    INSERT INTO winning_bids (uid, oid) VALUES
    (1, 1),
    (1, 2),
    (2, 3);
    
    CREATE TABLE objects (id INT NOT NULL, value INT NOT NULL);
    INSERT INTO objects (id, value) VALUES
    (1, 1),
    (2, 20),
    (3, 300);
    
    SELECT SUM(o.value) AS total, w.uid
    FROM winning_bids w
    LEFT JOIN objects o ON (o.id = w.oid)
    GROUP BY w.uid;
    

    Result:

    total  uid
    21     1
    300    2
    

    If you still think it doesn’t work can you please post example input data that gives the wrong result when you run your query, and also specify what you believe that the correct result should be.

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

Sidebar

Related Questions

I am trying to create an HQL query that will filter a tree based
I've been trying now for some time to create a query that would count
I'm trying to create a created_at query range that will capture all records created
I am trying to create Linq Expression that I can use to query child
We are trying to create/query information from a CF based on the following structure
I'm trying to create wmi query to sccm to get PC, where was user's
I trying to create a MySql Query from the $_POST values trouble is i
I'm trying to create an SQL query in PHP to update a table. Is
I am trying create a small web application that allows a user to login
I'm trying to create a menu system that allows you to go backward and

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.