adriaparcerisasSk8tibles 5
    Updated 2023-08-18

    WITH
    nba_buyers as (
    select
    distinct buyer
    from flow.core.ez_nft_sales
    where nft_collection ='A.0a2fbb92a8ae5c6d.Sk8tibles'
    --where block_timestamp>='2022-05-09'
    ),
    nba_sellers as (
    select
    distinct seller
    from flow.core.ez_nft_sales
    where nft_collection ='A.0a2fbb92a8ae5c6d.Sk8tibles'
    --where block_timestamp>='2022-05-09'
    ),
    buyers_crossovers as (
    SELECT
    distinct buyer as users
    from flow.core.ez_nft_sales
    where buyer in (select * from nba_buyers)
    group by 1
    ),
    buyers_crossovers_2 as (
    SELECT
    distinct buyer as users
    from flow.core.ez_nft_sales
    where buyer in (select * from nba_sellers)
    group by 1
    ),
    sellers_crossovers as (
    SELECT
    distinct seller as users
    from flow.core.ez_nft_sales
    where seller in (select * from nba_sellers)
    Run a query to Download Data