yasmin-n-d-r-hUntitled Query
Updated 2022-07-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with tb1
as (select proposer as users,
count(distinct tx_id) as num_transaction
from flow.core.fact_transactions
where TX_SUCCEEDED='TRUE'
and block_timestamp>='2022-07-01'
group by 1)
select case
when num_transaction=1 then 'Interaction'
when num_transaction>1 then 'Interact again'
end as buckets,
count(distinct users) as count_users
from tb1
group by 1
Run a query to Download Data