mlhdaily nfl
Updated 2022-07-05Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
block_timestamp::date as date,
sum(price) as "price",
case when marketplace = 'A.e4cf4bdc1751c65d.AllDay' then 'AllDay'
when marketplace = 'A.329feb3ab062d289.NFL_NFT'then 'NFL'
end as nflallday_market
from flow.core.fact_nft_sales
where nft_collection like '%AllDay%'
and tx_succeeded = 'TRUE'
group by 1, 3
Run a query to Download Data