sriniUntitled Query
    Updated 2022-11-10
    with sample_tx as (
    select *
    from solana.core.fact_transactions
    where block_timestamp >= '2022-11-01'
    and block_timestamp < '2022-11-02'
    and succeeded = True
    ),

    sample_tf as (
    select *
    from solana.core.fact_transfers
    where block_timestamp >= '2022-11-01'
    and block_timestamp < '2022-11-02'
    )

    select *
    from sample_tx tx
    left join sample_tf tf
    on tx.tx_id = tf.tx_id
    order by tx.tx_id
    limit 100
    Run a query to Download Data