MahrooUntitled Query
9
1
2
3
4
5
6
7
8
9
›
⌄
select 'July transactions' as status , block_timestamp::date as day, count(DISTINCT tx_id) as trans
from solana.core.fact_transactions
where block_timestamp::date >= '2022-07-01' and SUCCEEDED = 'TRUE'
group by status , day
UNION
select 'Other Transactions' as status , block_timestamp::date as day , count(DISTINCT tx_id) as trans
from solana.core.fact_transactions
where block_timestamp::date < '2022-07-01' and block_timestamp >= '2022-06-01' and SUCCEEDED = 'TRUE'
group by status , day
Run a query to Download Data