mattkstewNFL ALL DAY 1
    Updated 2022-09-19
    select
    play_type,
    sum(price) as Total_Sales_Volume,
    avg(price) as Average_Sales_Price,
    count(*) as Total_Sales


    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 play_type is not null
    and play_type not like 'Pressure'
    group by 1

    -- I want to add a bubble chart similar to the next one.
    Run a query to Download Data