0xaimanUntitled Query
Updated 2022-09-14
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
with a as (select date_trunc('month',block_timestamp) as month, sum(sales_amount) as tot_sales_solana ,
sum(tot_sales_solana) OVER(ORDER BY month asc ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cum_tot_sales_solana
from solana.core.fact_nft_sales
group by 1 order by 1 desc)
select *
limit 10
Run a query to Download Data