I have a table TEST with a DATETIME field, like this:
DATETIME
ID NAME DATE 1 TESTING 2014-03-19 20:05:20.000
you can try this
select * from test where DATEADD(dd, 0, DATEDIFF(dd, 0, date)) = '03/19/2014';