Ja, dit is mogelijk met behulp van basisaggregatie. Merk je op hoe ik verbruiksgegevens heb gepost? Dit is iets wat je zou moeten doen. Het kostte me veel meer tijd om bruikbare gegevens te maken dan om de query te schrijven.
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