Updated 2023-05-28
    select top 10 count(1) as pc , PLAYER from flow.core.dim_allday_metadata as m join flow.core.ez_nft_sales as s
    on m.nft_id=s.nft_id and s.nft_collection like '%AllDay%' and PLAYER!='N/A'
    group by PLAYER
    order by pc desc
    Run a query to Download Data