flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
What is the median sale price for each token type?
gigiokoba
What is the median sale price for each token type?
Updated 2024-11-11
Copy Reference
Fork
9
1
2
3
4
›
⌄
SELECT
TOKEN_VERSION
,
PERCENTILE_CONT
(
0.5
)
WITHIN
GROUP
(
ORDER
BY
TOTAL_PRICE_RAW
)
AS
median_sale_price
FROM
aptos
.
nft
.
fact_nft_sales
GROUP
BY
TOKEN_VERSION
;
Results
QueryRunArchived: QueryRun has been archived