dannerUntitled Query
    Updated 2021-08-27
    select
    count(case when price is null then 1 end) as price_null,
    count(case when price_usd is null then 1 end) as price_usd_null,
    count(case when tx_currency is null then 1 end) as tx_currenct_null
    from
    ethereum.nft_events

    Run a query to Download Data