i_danWeek 1 class - 2024-04-29 05:31 PM
    Updated 2024-04-29
    --select -from -where -group by -order by

    --database and table

    SELECT -- * means 'all'
    block_timestamp,
    tx_hash,
    origin_to_address,
    origin_from_address, -- (Recievers and Deposits)
    contract_address, -- (Senders and Withdrawals)
    amount_usd,
    symbol,
    token_price
    FROM
    ethereum.core.ez_token_transfers --Retrieving data from the ethereum.core.ez_token_tr
    WHERE
    amount_usd IS NOT NULL
    ORDER BY
    amount_usd ASC
    --GROUP BY amount_usd
    LIMIT
    1000
    QueryRunArchived: QueryRun has been archived