con questa query ottieni quello che hai chiesto, solo formattato in maniera un pò diversa, ma hai tutti i dati che ti interessano:

codice:
select dataXXX,
count( case when dataYYY like '%DST%' then 1 else null end ) AS dst,
count( case when dataYYY not like '%DST%' then 1 else null end ) as no_dst
from tbl
group by dataXXX
e questo è il risultato: (per ogni dataXXX hai il conteggio dei record di dataYYY che contengono DST e di quelli che non lo contengono)





ciao!