Skip to content
Advertisement

MySQL SUM of multiple rows from multiple table

I am trying to get the sum of multiple rows from 2 different tables, but somehow the result returns multiple rows.

I need to get the SUM of quotation_item_amount (group by quotation_id) and invoice_item_amount (group by invoice_id) and if I query unpaid quotation, I need to get WHERE SUM(invoice) < SUM(quotation)

So here’s my sample table

JavaScript

The result that I need to obtain is:

  1. SUM of quotation_item_amount and SUM of invoice_item_amount PER client_project_id
  2. To query WHERE SUM(invoice) < SUM(quotation)

Here is my latest try at the query

JavaScript

However, this results in multiple duplicate rows of the quotation_item_amount and invoice_item_amount.

Have tried using UNION / UNION ALL and several other queries which just do not work. Thank you for all your suggestions.

Advertisement

Answer

It looks like you are trying to aggregate along two different dimensions at the same time. The solution is to pre-aggregate along each dimension:

JavaScript

Two notes about your style.

First, you are using arbitrary letters for table aliases. This makes the query quite hard to follow and becomes quite awkward if you add new tables, remove tables, or rearrange the names. Use abbreviations for the tables. Much easier to follow.

Second, I don’t really recommend SELECT * for such queries. But, you can avoid duplicated column by replacing ON with USING.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement