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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:34:31+00:00 2026-05-28T20:34:31+00:00

I cant seem to group by multiple data fields and sum a particular grouped

  • 0

I cant seem to group by multiple data fields and sum a particular grouped column.

I want to group Person to customer and then group customer to price and then sum price. The person with the highest combined sum(price) should be listed in ascending order.

Example:

table customer
-----------
customer | common_id
 green        2
 blue         2
 orange       1

table invoice
 ----------
 person | price | common_id
 bob        2330     1
 greg       360      2    
 greg       170      2

SELECT DISTINCT
    min(person) As person,min(customer) AS customer, sum(price) as price
FROM invoice a LEFT JOIN customer b ON a.common_id = b.common_id 
GROUP BY customer,price
ORDER BY person

The results I desire are:

**BOB:** 
Orange, $2230

**GREG:**
green,  $360
blue,$170

The colors are the customer, that GREG and Bob handle. Each color has a price. 
  • 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-28T20:34:32+00:00Added an answer on May 28, 2026 at 8:34 pm

    There are two issues that I can see. One is a bit picky, and one is quite fundamental.

    Presentation of data in SQL

    SQL returns tabular data sets. It’s not able to return sub-sets with headings, looking something a Pivot Table.

    The means that this is not possible…

    **BOB:** 
    Orange, $2230
    
    **GREG:**
    green,  $360
    blue,   $170
    

    But that this is possible…

    Bob,  Orange, $2230
    Greg, Green,  $360
    Greg, Blue,   $170
    

    Relating data

    I can visually see how you relate the data together…

    table customer                 table invoice
    --------------                 -------------
    customer | common_id           person | price |common_id
     green        2                 greg     360       2
     blue         2                 greg     170       2
     orange       1                 bob     2330       1
    

    But SQL doesn’t have any implied ordering. Things can only be related if an expression can state that they are related. For example, the following is equally possible…

    table customer                 table invoice
    --------------                 -------------
    customer | common_id           person | price |common_id
     green        2                 greg     170       2      \ These two have 
     blue         2                 greg     360       2      / been swapped
     orange       1                 bob     2330       1
    

    This means that you need rules (and likely additional fields) that explicitly state which customer record matches which invoice record, especially when there are multiples in both with the same common_id.

    An example of a rule could be, the lowest price always matches with the first customer alphabetically. But then, what happens if you have three records in customer for common_id = 2, but only two records in invoice for common_id = 2? Or do the number of records always match, and do you enforce that?

    Most likely you need an extra piece (or pieces) of information to know which records relate to each other.

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

Sidebar

Related Questions

Hi I cant seem to get a ul wrapped aournd a group of li.
I have tried this multiple distinct from MySQL and I cant seem to get
Cant seem to get the following to find the 'skull' button when the 'heart'
I cant seem to find much info on haskells layout features, as I understand
I cant seem to grasp the proper concepts of a factory. Can anyone help
I cant seem to find the PythonMagick (Bindings for ImageMagick) documentation anywhere. Even the
I cant seem to get VB to focus on a textbox correctly at the
I cant seem to compare two JS files (one edited locally and the latest
Revising for php and cant seem to get this to print the values out
I have a problem which I cant seem to find answer to through searches

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.