dammyzuks[05] MDAO 101: SQL WHERE AND copy
    select
    *
    from ethereum.core.fact_transactions
    where from_address = '0x66b870ddf78c975af5cd8edc6de25eca81791de1'
    and block_timestamp >= '2022-07-21'
    -- alternatively, try changing the block_timestamp filter to the below
    -- and block_timestamp >= current_date - 2
    limit 100;
    Run a query to Download Data