Select inv_qoh, inv_size, color
from inventory
where inv_qoh > 0
and inv_size in ('m', 'l')
and color in ('royal', 'bright pink', 'spruce');
from inventory
where inv_qoh > 0
and inv_size in ('m', 'l')
and color in ('royal', 'bright pink', 'spruce');
Comment