adriaparcerisasSk8tibles 5
Updated 2023-08-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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