freemartian2023-09-11 10:46 PM
    Updated 2023-09-11
    select
    date_trunc('day', block_timestamp) as time,
    count(*)
    from base.core.fact_blocks
    where block_timestamp > current_date -10
    group by time
    Run a query to Download Data