MONTH_NAME | UNIQUE_SENDERS | |
---|---|---|
1 | Janth 2025 | 47138644 |
2 | Febth 2025 | 37109828 |
3 | Marth 2025 | 41611094 |
4 | Aprth 2025 | 33376963 |
5 | Mayth 2025 | 12052093 |
Echo5577philosophical-azure
Updated 2025-05-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
TO_CHAR(DATE_TRUNC('month', BLOCK_TIMESTAMP_HOUR), 'Month YYYY') AS month_name,
SUM(UNIQUE_SENDER_COUNT) AS unique_senders
FROM
aptos.stats.ez_core_metrics_hourly
WHERE
YEAR(BLOCK_TIMESTAMP_HOUR) = YEAR(CURRENT_DATE())
AND MONTH(BLOCK_TIMESTAMP_HOUR) <= 9 -- To include only months up to September
GROUP BY
DATE_TRUNC('month', BLOCK_TIMESTAMP_HOUR), -- Group by the same expression used in the SELECT
month_name
ORDER BY
DATE_TRUNC('month', BLOCK_TIMESTAMP_HOUR); -- Order by the same expression
Last run: 13 days ago
5
121B
2s