Mahroomany-plum
Updated 2024-11-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
⌄
SELECT
DATE_TRUNC('YEAR', BLOCK_TIMESTAMP) AS year,
COUNT(*) AS total_transactions
FROM
bitcoin.core.fact_transactions
WHERE
BLOCK_TIMESTAMP >= '2020-01-01' AND BLOCK_TIMESTAMP < '2025-01-01';
GROUP BY
DATE_TRUNC('year', BLOCK_TIMESTAMP)
ORDER BY
year;
QueryRunArchived: QueryRun has been archived