Since the data is stored as datetime data type, it is much better to simply compare days, for example like this:WHERE DAY(GETDATE()) = DAY(DT)
What would be even better would be to do something like below, both because this may perform better and because if your data spans more than one month, it won't pick up data from other months that have the same date.WHERE DT >= DATEADD(dd,DATEDIFF(dd,0,GETDATE()),0) AND DT < DATEADD(dd,DATEDIFF(dd,0,GETDATE()),1)