Tobi_1technological-sapphire
    Updated 2025-03-18
    SELECT
    TO_DATE(BLOCK_TIMESTAMP) AS transaction_date, -- Group by date
    COUNT(TX_ID) AS total_transactions
    FROM
    flow.core.fact_transactions;
    WHERE
    BLOCK_TIMESTAMP >= DATEADD(day, -30, CURRENT_DATE()) -- Last 30 days
    GROUP BY
    TO_DATE(BLOCK_TIMESTAMP) -- Group by each day
    ORDER BY
    transaction_date ASC; -- Sort by date to see the trend over time

    Last run: about 1 month ago
    TRANSACTION_DATE
    TOTAL_TRANSACTIONS
    1
    2025-02-16 00:00:00.000138227
    2
    2025-02-17 00:00:00.000129375
    3
    2025-02-18 00:00:00.000138082
    4
    2025-02-19 00:00:00.000178342
    5
    2025-02-20 00:00:00.000173908
    6
    2025-02-21 00:00:00.000259209
    7
    2025-02-22 00:00:00.000174658
    8
    2025-02-23 00:00:00.000158187
    9
    2025-02-24 00:00:00.000171838
    10
    2025-02-25 00:00:00.000181143
    11
    2025-02-26 00:00:00.000196962
    12
    2025-02-27 00:00:00.000171989
    13
    2025-02-28 00:00:00.000186969
    14
    2025-03-01 00:00:00.000261590
    15
    2025-03-02 00:00:00.000274411
    16
    2025-03-03 00:00:00.000415497
    17
    2025-03-04 00:00:00.000464142
    18
    2025-03-05 00:00:00.000471136
    19
    2025-03-06 00:00:00.000477442
    20
    2025-03-07 00:00:00.000470075
    31
    1KB
    1s