1999_eth用户交易数量分布
    Updated 4 hours ago
    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 4 hours ago
    TX交易数量区间
    用户数量
    % 百分比
    1
    1至2次交易4195476584.71
    2
    3至5次交易30880546.23
    3
    6至10次交易12549992.53
    4
    21至50次交易11567422.34
    5
    11至20次交易8583861.73
    6
    51至100次交易5783831.17
    7
    101至500次交易5470361.1
    8
    501至1000次交易488910.1
    9
    1000次以上交易425580.09
    9
    304B
    21s