rashmannassociated-gray
Updated 2024-09-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
⌄
SELECT
FROM_ADDRESS AS UserAddress,
DATE_TRUNC('DAY', BLOCK_TIMESTAMP) AS TransactionDay,
COUNT(*) AS TransactionCount
FROM
bsc.core.fact_transactions;
WHERE
BLOCK_TIMESTAMP >= '2023-08-01' AND BLOCK_TIMESTAMP < '2023-09-01'
GROUP BY
FROM_ADDRESS, DATE_TRUNC('DAY', BLOCK_TIMESTAMP)
ORDER BY
TransactionDay, TransactionCount DESC;
QueryRunArchived: QueryRun has been archived