mattkstewRound 2 Part 3
    Updated 2022-09-21
    select
    player,
    play_type,
    sum(price),
    avg(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 play_type like '{{Play_Type}}'
    group by 1, 2

    Run a query to Download Data