I have two tables orders
and order_items
. I need to group the results by days. But I also need to get the sum of energy_used
for each day from another table. When I try that using a join, I get wrong order_sum
for each day. Not sure what I am doing wrong.
I am using joins because I would also like to sort by these columns later.
Here is my orders
table
+----+-----------+---------+---------------------+
| id | order_sum | user_id | created_at |
+----+-----------+---------+---------------------+
| 1 | 25.13 | 7 | 2020-01-25 09:13:00 |
| 2 | 14.00 | 5 | 2020-01-26 10:14:00 |
| 3 | 35.00 | 1 | 2020-01-27 11:13:00 |
+----+-----------+---------+---------------------+
And here is my order_items
table
+----+----------+-------------+---------------------+
| id | order_id | energy_used | created_at |
+----+----------+-------------+---------------------+
| 1 | 1 | 65 | 2020-01-25 09:13:00 |
| 2 | 1 | 12 | 2020-01-25 09:13:00 |
| 3 | 2 | 70 | 2020-01-26 10:14:00 |
| 4 | 2 | 5 | 2020-01-26 10:14:00 |
| 5 | 3 | 0 | 2020-01-27 11:13:00 |
+----+----------+-------------+---------------------+
And this is the desired result that I am trying to achieve
+---------------+-----------------+-------------------+---------------------+----------------+
| date_of_month | total_order_sum | total_energy_used | last_order_date | last_order_sum |
+---------------+-----------------+-------------------+---------------------+----------------+
| 2020-01-25 | 25.13 | 77 | 2020-01-25 09:13:00 | 25.13 |
| 2020-01-26 | 14.00 | 75 | 2020-01-26 10:14:00 | 14.00 |
| 2020-01-27 | 35.00 | 0 | 2020-01-27 11:13:00 | 35.00 |
+---------------+-----------------+-------------------+---------------------+----------------+
And here is my query that I have tried but I'm getting wrong results, the order_sum is not being calculated correctly because of my join with the order_items table
SELECT
DATE(orders.created_at) AS date_of_month,
SUM(orders.order_sum) AS order_sum,
order_items.energy_used
FROM
orders
JOIN (
select
order_id,
sum(energy_used) as energy_used
from
order_items
group by
date(created_at)
) as order_items on order_items.order_id = orders.id
JOIN (
select
max(created_at) as last_order_date,
max(order_sum) as last_order_sum
from
orders
order by created at desc
limit 1
) as orders2 on orders2.id = orders.id
GROUP BY
date_of_month
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…