mmdrezaTop 10 play type based on total Sales Volume
    Updated 2022-09-20
    select play_type,count(tx_id) as transactions,sum(price) as volume
    from flow.core.ez_nft_sales s
    join flow.core.dim_allday_metadata m on m.nft_id = s.nft_id
    where play_type is not null
    and s.nft_collection like 'A.e4cf4bdc1751c65d.AllDay'
    and play_type not like 'Pressure'
    and player not like 'N/A'
    group by play_type
    order by volume desc
    limit 10
    Run a query to Download Data