gpt4 book ai didi

mysql - 如何在MYSQL中获取每个月的最大日期

转载 作者:行者123 更新时间:2023-11-30 21:27:20 25 4
gpt4 key购买 nike

如何获取每个月的最大日期?我不知道我做错了什么,但数据是根据我的结果重复的。

这是表格。

history table
|ID |  from_range   |      to_range       |     price  |      main_id
1 2019-09-01 00:00:00 2019-09-15 00:00:00 5 1
2 2019-09-16 00:00:00 2019-09-30 00:00:00 10 1
3 2019-10-01 00:00:00 2019-10-15 00:00:00 15 1
4 2019-10-16 00:00:00 2019-10-19 00:00:00 20 1
5 2019-10-20 00:00:00 0000-00-00 00:00:00 25 1
current_usage table
id    main_id    total_usage   date_created
1 1 10 2019-09-01
2 1 10 2019-09-02
3 1 10 2019-09-03
4 1 10 2019-09-04
5 1 10 2019-09-05
6 1 10 2019-09-06
7 1 20 2019-09-07
8 1 5 2019-09-08
9 1 5 2019-09-09
10 1 10 2019-09-10
11 1 10 2019-09-15
12 1 10 2019-09-16
13 1 10 2019-09-17
14 1 10 2019-09-18
15 1 10 2019-09-19
16 1 10 2019-09-20
17 1 20 2019-09-25
18 1 5 2019-09-26
19 1 5 2019-09-27
20 1 10 2019-09-30
21 1 10 2019-10-01
22 1 10 2019-10-02
23 1 10 2019-10-03
24 1 10 2019-10-10
25 1 10 2019-10-11
26 1 10 2019-10-12
27 1 10 2019-10-18
28 1 20 2019-10-20
29 1 5 2019-10-21
30 1 5 2019-10-22
31 1 10 2019-10-23

所以在我的 history_table 中,我得到了每个月的 date_range,这取决于用户每天更改成本的次数。

基本上是这样

输出应该是这样的

id   price         range_date         total_usage  
1 5 2019-09-01 - 2019-09-15 SUM(total_usage) based on the date range
2 10 2019-09-16 - 2019-09-30 SUM(total_usage) based on the date range
3 15 2019-10-01 - 2019-10-15 SUM(total_usage) based on the date range
4 20 2019-10-16 - 2019-09-19 SUM(total_usage) based on the date range
5 25 2019-10-20 - 2019-10-31 SUM(total_usage) based on the date range

然后我计划每个月总结一下。基于那 5 行的输出。

这是我当前的查询,如果他们只有一个价格历史记录,我就能做到,如果只有一个价格历史记录,那是一个单独的查询,但对于多个价格历史记录,我真的很难做到获取每个月的范围及其总和。

SELECT price.price,
price.from _range AS first_range,
price.to_range AS second_range,
(current_usage.total_usage),
current_usage.date_created
FROM history AS price
INNER JOIN current_usage AS current_usage
ON price.main_id = current_usage .main_id
INNER JOIN(SELECT MAX(to_range) AS maxdate
FROM history
GROUP BY YEAR(to_range), MONTH(to_range)) x ON price.to_range= maxdate

非常感谢任何帮助,我真的需要一些帮助。

最佳答案

如果我理解正确,你只需要一个基于 current_usage 表的 date_created 的连接来谎言 Between history 表的from_rangeto_range:

SELECT 
p.id,
p.price,
DATE(p.from_range) AS first_range,
DATE(IF(p.to_range = '0000-00-00 00:00:00', LAST_DAY(p.from_range), p.to_range)) AS second_range,
SUM(c.total_usage) AS total_usage
FROM history AS p
INNER JOIN current_usage AS c
ON c.main_id = p.main_id
AND c.date_created BETWEEN DATE(p.from_range) AND DATE(IF(p.to_range = '0000-00-00 00:00:00', LAST_DAY(p.from_range), p.to_range))
GROUP BY p.id

我假设 history 表中的 id 列是您的主键。因此,SELECT 子句中 history 表中的其余非聚合列在功能上是相关的,因此无需在 GROUP BY

关于mysql - 如何在MYSQL中获取每个月的最大日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58251954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com