mattkstewNFL ALL DAY 5
Updated 2022-09-21Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
date_trunc('day', block_timestamp) ,
player,
sum(price)
from flow.core.ez_nft_sales left outer join flow.core.dim_allday_metadata
on flow.core.ez_nft_sales.nft_id = flow.core.dim_allday_metadata.nft_id
where block_timestamp > '2022-09-08'
and player not in ('Christian McCaffrey', 'Jonathan Taylor', 'Austin Ekeler', 'Alvin Kamara', 'Derrick Henry', 'Saquon Barkley' ,-- RB
'Josh Allen', 'Lamar Jackson', 'Justin Herbert', 'Jalen Hurts', 'Russell Wilson', -- QB
'Cooper Kupp', 'Justin Jefferson', 'JaMarr Chase', 'CeeDee Lamb', 'Davante Adams', -- WR
'Mark Andrews', 'Travis Kelce' , 'Kyle Pitts', 'Darren Waller', 'Dalton Schultz') -- TE
and player is not null
group by 1, 2
--order by 2 DESC
Run a query to Download Data