TX交易数量区间 | 用户数量 | % 百分比 | |
---|---|---|---|
1 | 1至2次交易 | 144976996 | 92.92 |
2 | 3至5次交易 | 4682826 | 3 |
3 | 6至10次交易 | 1999387 | 1.28 |
4 | 21至50次交易 | 1320027 | 0.85 |
5 | 11至20次交易 | 1195887 | 0.77 |
6 | 101至500次交易 | 876487 | 0.56 |
7 | 51至100次交易 | 819679 | 0.53 |
8 | 501至1000次交易 | 83772 | 0.05 |
9 | 1000次以上交易 | 65657 | 0.04 |
1999_eth用户交易数量分布
Updated 9 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
select
case
when txs <= 2 then '1至2次交易'
when txs > 2 and txs <= 5 then '3至5次交易'
when txs > 5 and txs <= 10 then '6至10次交易'
when txs > 10 and txs <= 20 then '11至20次交易'
when txs > 20 and txs <= 50 then '21至50次交易'
when txs > 50 and txs <= 100 then '51至100次交易'
when txs > 100 and txs <= 500 then '101至500次交易'
when txs > 500 and txs <= 1000 then '501至1000次交易'
when txs > 1000 then '1000次以上交易'
else '无交易数据' end as "TX交易数量区间",
count(user) as "用户数量",
round(count(user) * 100.0 / (select count(DISTINCT FROM_ADDRESS) from monad.testnet.fact_transactions where TX_SUCCEEDED=true), 2) as "% 百分比"
from
(select FROM_ADDRESS as user, count(*) as txs
from monad.testnet.fact_transactions
where TX_SUCCEEDED=true
group by 1) as tx_counts
group by 1
order by 2 desc
Last run: about 9 hours ago
9
305B
77s