Mahroohuge-sapphire
Updated 2024-11-10
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
DATE_TRUNC('day', BLOCK_TIMESTAMP) AS day,
COUNt(*) AS daily_transaction
FROM
bitcoin.core.fact_transactions
WHERE
BLOCK_TIMESTAMP >= '2024-09-01' AND BLOCK_TIMESTAMP < '2024-10-01'
GROUP BY
DATE_TRUNC('day', BLOCK_TIMESTAMP)
ORDER BY
day;
QueryRunArchived: QueryRun has been archived