NavidNBA Playoff Usage
Updated 2022-06-26Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
Transaction_Date,
Transaction_Count,
avg(Transaction_Count) OVER (ORDER BY Transaction_Date) AS Cum_Transaction_Count
from
(
select
date(BLOCK_TIMESTAMP) as Transaction_Date, count(*) as Transaction_Count
from flow.core.fact_nft_sales
where NFT_COLLECTION like '%TopShot%'
group by
date(BLOCK_TIMESTAMP)
order by
date(BLOCK_TIMESTAMP)
) tbl
-- 0x7B09b79aB30Fa670c29DD1ED4dcaB11f4D7Afefc
Run a query to Download Data