MilesFinchUntitled Query
Updated 2022-05-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
›
⌄
with
chefs as (
select
address as mint
from solana.dim_labels
where label = 'marinade chefs'
and label_type = 'nft'
),
minters as (
select
mint
from solana.fact_nft_mints mints
where exists (
select
1
from chefs
where chefs.mint = mints.mint
)
)
select * from chefs
except
select * from minters
Run a query to Download Data