flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
2023-11-15 09:24 PM
B09
2023-11-15 09:24 PM
Updated 2023-11-16
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
WITH
ProjectFeeDetails
AS
(
SELECT
PROJECT_NAME
,
SUM
(
CREATOR_FEE_USD
)
AS
TotalCreatorFees
FROM
ethereum
.
nft
.
ez_nft_sales
GROUP
BY
PROJECT_NAME
)
SELECT
PROJECT_NAME
,
TotalCreatorFees
FROM
ProjectFeeDetails
WHERE
TotalCreatorFees
>
5000
;
Results
Run a query to Download Data