mariyaDistribution of all Solana NFTs
    Updated 2022-04-27
    select
    case
    when sales_amount BETWEEN 0 and 1 then '0-1'
    when sales_amount BETWEEN 1 and 5 then '1-5'
    when sales_amount BETWEEN 5 and 10 then '5-10'
    when sales_amount BETWEEN 10 and 20 then '10-20'
    when sales_amount BETWEEN 20 and 50 then '20-50'
    when sales_amount BETWEEN 50 and 10 then '50-100'
    when sales_amount BETWEEN 100 and 300 then '100-300'
    when sales_amount BETWEEN 300 and 500 then '300-500'
    else 'greater than 500'
    end as amount_range ,
    count (tx_id) as transactions
    from solana.fact_nft_sales
    where succeeded = true
    group by 1
    Run a query to Download Data