nitsStepn vs Genopets Count
    Updated 2022-07-13
    with g as
    (SELECT count(*) as genopets_count from solana.dim_labels
    WHERE label ilike '%genopets' and label_type = 'nft'),
    s as
    (SELECT count(*) as stepn_count from solana.dim_labels
    WHERE label ilike '%stepn' and label_type = 'nft')

    SELECT * from s , g
    LIMIT 10
    Run a query to Download Data