metricsdao[13] MDAO 101: SQL SUM
    Updated 2023-03-12
    -- MetricsDAO Blockchain Analytics 101
    -- https://docs.metricsdao.xyz/analyst-resources/blockchain-data-101

    select
    sum(platform_fee) as total_platform_fee,
    sum(platform_fee_usd) as total_platform_fees_usd
    from ethereum.core.ez_nft_sales
    where block_timestamp between '2022-06-01' and '2022-06-30'
    and platform_name = 'opensea'
    and currency_symbol = 'ETH';

    Run a query to Download Data