khanhlast 2 weeks
Updated 2022-09-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
player,
sum(price) as total_sales_price,
avg(price) as average_sales_price,
median(price) as median_sales_price,
count(distinct(tx_id)) as tx_num
from flow.core.dim_allday_metadata a join flow.core.ez_nft_sales b
on a.nft_id = b.nft_id
where player != 'N/A'
and block_timestamp::date >= current_date - interval '2 weeks'
group by player
order by total_sales_price desc
Run a query to Download Data