我有一个 cron 脚本,每天将活动用户总数写入一个表。我现在正在尝试生成一个简单的报告,该报告将显示每个月的“高水位线”。由于某些帐户在当月到期,因此最高数字可能不在月末。
这是我的表结构的示例
tblUserLog
-----------
record_id INT(11) // PRIMARY KEY
run_date DATE // DATE RUN
ttl_count INT(11) // TOTAL FOR DAY
样本数据:
record_id run_date ttl_count
1 2013-06-01 500
2 2013-06-10 510
3 2013-06-20 520
4 2013-06-30 515
5 2013-07-01 525
6 2013-07-10 530
7 2013-07-20 540
8 2013-07-31 550
9 2013-08-01 560
我想要返回的是:
record_id run_date ttl_count
3 2013-06-20 520
8 2013-07-31 550
9 2013-08-01 560
我已经尝试了两个接近的查询......
// This will give me the total for the first of the month
SELECT s.record_id, s.run_date, s.ttl_count
FROM tblStatsIndividual s
JOIN (
SELECT record_id
FROM tblStatsIndividual
GROUP BY DATE_FORMAT(run_date, '%Y %m')
HAVING MAX(ttl_count)
) s2
ON s2.record_id = s.record_id
ORDER BY run_date DESC
这将返回每个月第一天的总计,以及总计的 record_id 和正确日期。
试过这个...
SELECT record_id,max(run_date), max(ttl)
FROM (
SELECT record_id,run_date, max(ttl_count) AS ttl
FROM tblStatsIndividual
GROUP BY DATE_FORMAT(run_date, '%Y %m')
) a
GROUP BY DATE_FORMAT(run_date, '%Y %m')
ORDER BY run_date DESC
这个似乎获得了正确的“高水位线”,但它没有返回记录 ID,或者是高水位线的行的 run_date。
您如何获得最高总数的 record_id 和 run_date?