NavidCopy of Untitled Query
Updated 2022-10-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
marketplace,
count(distinct TX_ID) as total_number_of_sales,
sum(SALES_AMOUNT) as total_sales_price
from
solana.core.fact_nft_sales a join solana.core.dim_labels b on a.MINT=b.ADDRESS
where
SUCCEEDED and
address_name in ('Hockey Heroes','Collectorz Club: The Collectorz','collectorz club gen1','The Suites','Laidback Lions','Sports Rewind')
group by
1
order by
1
Run a query to Download Data