feyikemiClayno_Cumul_Vol
Updated 2024-03-14
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
›
⌄
SELECT
Block_timestamp :: DATE AS Date,
nft_collection_name,
collection_id,
COUNT(DISTINCT tx_id) AS Txn_count,
SUM(SALES_AMOUNT) AS sol_vol,
SUM(sol_vol)
OVER (PARTITION BY COLLECTION_ID ORDER BY Date) AS Cumul_sol_vol,
--Succeeded
from solana.nft.fact_nft_sales s
JOIN solana.nft.dim_nft_metadata l
ON s.mint = l.mint
WHERE NFT_Name LIKE '%Clayno%'
AND Date >= '2024-01-01'
AND nft_collection_name IS NOT NULL
GROUP BY 1, 2, 3
ORDER BY 6 DESC
QueryRunArchived: QueryRun has been archived