0-MID3 copy
Updated 2024-01-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
select
case
when PRICE_USD>0 and PRICE_USD<10 then 'Below 10 $'
when PRICE_USD>10 and PRICE_USD<=50 then '10~50 $'
when PRICE_USD>50 and PRICE_USD<=100 then '50~100 $'
when PRICE_USD>100 and PRICE_USD<=500 then '100~500 $'
when PRICE_USD>500 and PRICE_USD<=1000 then '500~1000 $'
when PRICE_USD>1000 then 'Up To 1000 $' end as dis_volume
,count(distinct TOKENID) as nft_sold
,count(distinct TX_HASH) as sale_count
from bsc.nft.ez_nft_sales
where dis_volume is not null
group by 1
QueryRunArchived: QueryRun has been archived