आपका time
कॉलम ऑर्डरिंग निर्दिष्ट करता प्रतीत होता है। तब अंत में शून्यों की संख्या होगी:
select count(*)
from table t
where t.col = 0 and
t.time > (select max(t2.time) from table t2 where t2.col = 1);
आपका time
कॉलम ऑर्डरिंग निर्दिष्ट करता प्रतीत होता है। तब अंत में शून्यों की संख्या होगी:
select count(*)
from table t
where t.col = 0 and
t.time > (select max(t2.time) from table t2 where t2.col = 1);