sakineh5021-nIQRzBKashi 2
Updated 2022-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT symbol , sum(balance)
from ethereum.erc20_balances
where balance_date = '2022-04-12'
and symbol like 'km%'
and symbol not like '%FEI%'
and user_address <> '0x82ccea8020dde8df2932f6920c39e1259ff5eea1'
and user_address <> '0xad492e78ea607f1ccf1cefaa7ee37871932b1d02'
and user_address <> '0x8c654ea010cfb5312fc711f05cde3d91a7a8ddbe'
group by 1
order by 2 DESC
Run a query to Download Data