sakineh5021-nIQRzBUntitled Query
Updated 2022-04-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
with token as
(
SELECT DISTINCT S.token_address
from ethereum.dex_swaps S
left outer join ethereum.erc20_balances B on S.token_address = B.contract_address
where platform = 'sushiswap'
and balance_date ='2022-04-08'
)
SELECT symbol
from token T ,ethereum.dex_swaps D , ethereum.erc20_balances B
where T.token_address = D.token_address
and D.platform = 'sushiswap'
and B.contract_address = T.token_address
and balance_date ='2022-04-08'
Run a query to Download Data