Skip to content
Advertisement

MySQL 3 tables with 2 join and 1 non join table in one query

Good day,

Having problems with querying this type of scenario.

Sample scenario: I have 3 tables named tbl_customer, tbl_amount, tbl_expense

tbl_customer has fields named customer_id, name, address, date_added

tbl_amount has fields named amount_id, customer_id, amount, date_added

tbl_expense has fields named expense_id, amount, date_added

I want to merge all the table in one result base on the date_added value. I have this query but its not working

SELECT sum(tbl_amount.amount) as daily_total, tbl_amount.date_added, sum(tbl_expense.amount) as daily_expenses FROM tbl_customer LEFT JOIN tbl_amount on tbl_amount.customer_id = tbl_customer.customer_id RIGHT JOIN tbl_expense on tbl_expense.date_added = tbl_amount.date_added GROUP BY tbl_amount.date_added

result was all the amounts was multiplied and not the expected daily total amount.

tbl_customer

customer_id | name | address | date_added

123 | Jane Doe | Sample Address | 2022-08-12

456 | John | Address 2 | 2022-08-12

tbl_amount

amount_id | customer_id | amount | date_added

1 | 123 | 1000 | 2022-08-12

2 | 456 | 2000 | 2022-08-12

tbl_expense

expense_id | amount | date_added

1 | 250 | 2022-08-12

2 | 350 | 2022-08-12

running the code I use. this is the result, which is wrong

total_total | daily_expenses | date_added

6000 | 1200 | 2022-08-12

whereas the correct value should be

3000 | 600 | 2022-08-12

Advertisement

Answer

I have question on total expense amount. It should be 550 as per your data. You can change joins based on your requirement. But I think INNER JOIN will be the case.

You can try this

Let me know if you still have any query.

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