Ja, dette er muligt ved brug af grundlæggende aggregering. Læg mærke til, hvordan jeg lagde forbrugsdata? Dette er noget, du bør gøre. Det tog mig meget længere tid at oprette brugbare data, end det gjorde at skrive forespørgslen.
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