PierandreaCopy of Copy of Collections Composition - Rarity
    Updated 2022-12-11
    WITH ALLS AS (SELECT
    RARITY,
    DROP_NUMBER,
    ITEM_NO,
    EDITIONS
    from algorand.nft.ez_nft_metadata_fifa
    GROUP BY 1,2,3,4)

    SELECT
    RARITY,
    COUNT(EDITIONS) AS NFTS
    FROM ALLS
    GROUP BY 1
    Run a query to Download Data