TX交易数量区间 | 用户数量 | % 百分比 | |
---|---|---|---|
1 | 1至2次交易 | 21723023 | 76.81 |
2 | 3至5次交易 | 2679066 | 9.47 |
3 | 6至10次交易 | 1089142 | 3.85 |
4 | 21至50次交易 | 981640 | 3.47 |
5 | 11至20次交易 | 778354 | 2.75 |
6 | 51至100次交易 | 502601 | 1.78 |
7 | 101至500次交易 | 447066 | 1.58 |
8 | 501至1000次交易 | 41942 | 0.15 |
9 | 1000次以上交易 | 36959 | 0.13 |
1999_eth用户交易数量分布
Updated 1 day 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: 1 day ago
9
305B
13s