Abbas_ra21sol nft pt 3
Updated 2022-10-30
9
1
2
3
4
5
6
7
8
9
›
⌄
select
Label AS Collection,
MARKETPLACE,
sum(SALES_AMOUNT) AS "Sol Volume",
rank() over (partition by MARKETPLACE order by "Sol Volume" desc) as rank
from solana.core.fact_nft_sales
inner join solana.core.dim_labels on address=mint
where MARKETPLACE in ('hyperspace','coral cube') and SUCCEEDED='TRUE'
group by 1,2 qualify rank <=10
Run a query to Download Data