KaskoazulTrending NFT Projects Crossover sellers RAW TABLE
    Updated 2022-06-14
    with raw as (
    select distinct seller
    from flow.core.fact_nft_sales
    where split_part(nft_collection,'.',3) in ('TopShot', 'AllDay', 'PackNFT', 'UFC_NFT', 'CricketMoments')
    ),

    TS_sellers as (
    select distinct seller as TS_seller
    from flow.core.fact_nft_sales
    where split_part(nft_collection,'.',3) in ('TopShot')
    ),

    AD_sellers as (
    select distinct seller as AD_seller
    from flow.core.fact_nft_sales
    where split_part(nft_collection,'.',3) in ('AllDay')
    ),

    P_sellers as (
    select distinct seller as P_seller
    from flow.core.fact_nft_sales
    where split_part(nft_collection,'.',3) in ('PackNFT')
    ),
    U_sellers as (
    select distinct seller as U_seller
    from flow.core.fact_nft_sales
    where split_part(nft_collection,'.',3) in ('UFC_NFT')
    ),

    CM_sellers as (
    select distinct seller as CM_seller
    from flow.core.fact_nft_sales
    where split_part(nft_collection,'.',3) in ('CricketMoments')
    ),
    Run a query to Download Data