sakineh5021-nIQRzBKashi Ultimate
Updated 2022-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT balance_date , sum(balance)
from ethereum.erc20_balances
where balance_date >= '2022-02-01'
and symbol like 'km%'
and (symbol like '%USDC%'
or symbol like '%UST%'
or symbol like '%DAI%'
or symbol like '%USDT%')
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