I’m using MySQL and I have the following table:
x
| clicks | int |
| period | date |
I want to be able to generate reports like this, where periods are done in the last 4 weeks:
| period | clicks |
| 1/7 - 7/5 | 1000 |
| 25/6 - 31/7 | . |
| 18/6 - 24/6 | . |
| 12/6 - 18/6 | . |
or in the last 3 months:
| period | clicks |
| July | . |
| June | . |
| April | . |
Any ideas how to make select queries that can generate the equivalent date range and clicks count?
Advertisement
Answer
SELECT
WEEKOFYEAR(`date`) AS period,
SUM(clicks) AS clicks
FROM `tablename`
WHERE `date` >= CURDATE() - INTERVAL 4 WEEK
GROUP BY period
SELECT
MONTH(`date`) AS period,
SUM(clicks) AS clicks
FROM `tablename`
WHERE `date` >= CURDATE() - INTERVAL 3 MONTH
GROUP BY period