MahrooUntitled Query
Updated 2022-10-29Copy Reference Fork
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
›
⌄
with coralt as (
select distinct seller
from solana.core.fact_nft_sales
where succeeded = 'TRUE'
and marketplace in ('coral cube')),
hypert as (
select distinct seller
from solana.core.fact_nft_sales
where succeeded = 'TRUE'
and marketplace in ('hyperspace'))
select 'Used Both Marketplaces' as type,
count (distinct seller) as Users_Count
from coralt where seller in (select seller from hypert)
union ALL
select 'Used Only HyperSpace' as type,
count (distinct seller) as Users_Count
from hypert where seller not in (select seller from coralt)
union ALL
select 'Used Only Coral Cube' as type,
count (distinct seller) as Users_Count
from coralt where seller not in (select seller from hypert)
Run a query to Download Data