winnie-fssort test query 1
    Updated 2023-03-21
    with data as
    (
    select project_name, count(*) as count
    from ethereum.core.ez_nft_mints
    where block_timestamp > '2023-03-01'
    group by 1
    limit 10
    )

    select * from data
    order by 1 asc
    Run a query to Download Data