camp Query 5
    Updated 2022-07-13
    select date_trunc('month',block_timestamp::date),
    count(1)
    from solana.core.fact_transactions
    where block_timestamp::date between '2022-02-01' and '2022-02-28'
    and succeeded = TRUE
    group by 1
    order by 1 desc
    Run a query to Download Data