Ano, je to možné pomocí základní agregace. Všimli jste si, jak jsem odeslal údaje o spotřebním materiálu? Tohle je něco, co byste měli udělat. Vytvoření použitelných dat mi trvalo mnohem déle, než psaní dotazu.
with something(Col1, Col2) as
(
select 1, 'microsoft' union all
select 0, 'cisco' union all
select 2, 'cisco' union all
select 3, 'vmware' union all
select 0, 'adobe' union all
select 0, 'microsoft'
)
select Col2
from something
group by Col2
having MAX(Col1) = 0