हाँ यह बुनियादी एकत्रीकरण का उपयोग करके संभव है। ध्यान दें कि मैंने उपभोज्य डेटा कैसे पोस्ट किया? यह कुछ ऐसा है जो आपको करना चाहिए। मुझे क्वेरी लिखने की तुलना में प्रयोग करने योग्य डेटा बनाने में अधिक समय लगा।
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