hyoeisemanFC12
Updated 2022-11-16Copy Reference Fork
9
1
2
3
4
5
6
7
8
›
⌄
select player,
EVENT_TYPE,
count (distinct nft_asset_id) as NFTs_Count
from algorand.core.fact_account_asset, algorand.nft.ez_nft_metadata_fifa
where algorand.core.fact_account_asset.asset_id = algorand.nft.ez_nft_metadata_fifa.nft_asset_id
and algorand.core.fact_account_asset.amount > 0
and address ilike '{{your_chosen_wallet}}'
group by 1,2
Run a query to Download Data