0-MID3 copy
Updated 2023-08-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with tab1 as (
select SELLER_ADDRESS
,sum(PRICE_USD) as volume
,count(distinct TOKENID) as nft_sold
,count(distinct TX_HASH) as sale_count
from bsc.nft.ez_nft_sales
group by 1)
select
avg(volume) as avg
from tab1
Run a query to Download Data