i_danWeek 1 class - 2024-04-29 05:31 PM
Updated 2024-04-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
--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