Amy-G0sBO5Top sales volume
    Updated 2022-07-12
    select
    TEAM,
    count(TEAM) as "Sales Number"
    from flow.core.dim_topshot_metadata t
    inner join flow.core.fact_nft_sales n on t.NFT_ID=n.NFT_ID
    where '2022-05-17' < block_timestamp AND block_timestamp<='2022-05-29'
    group by 1
    order by 1
    Run a query to Download Data